@digihmis/esm-patient-registration-app 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/dist/117.js +1 -0
- package/dist/117.js.map +1 -0
- package/dist/131.js +1 -0
- package/dist/131.js.map +1 -0
- package/dist/132.js +1 -0
- package/dist/132.js.map +1 -0
- package/dist/152.js +1 -0
- package/dist/152.js.map +1 -0
- package/dist/209.js +1 -0
- package/dist/209.js.map +1 -0
- package/dist/247.js +1 -0
- package/dist/247.js.map +1 -0
- package/dist/28.js +1 -0
- package/dist/28.js.map +1 -0
- package/dist/317.js +1 -0
- package/dist/317.js.map +1 -0
- package/dist/349.js +1 -0
- package/dist/349.js.map +1 -0
- package/dist/371.js +1 -0
- package/dist/371.js.map +1 -0
- package/dist/378.js +1 -0
- package/dist/378.js.map +1 -0
- package/dist/442.js +1 -0
- package/dist/442.js.map +1 -0
- package/dist/45.js +1 -0
- package/dist/45.js.map +1 -0
- package/dist/459.js +12 -0
- package/dist/459.js.map +1 -0
- package/dist/466.js +1 -0
- package/dist/466.js.map +1 -0
- package/dist/508.js +1 -0
- package/dist/508.js.map +1 -0
- package/dist/61.js +1 -0
- package/dist/61.js.map +1 -0
- package/dist/640.js +1 -0
- package/dist/640.js.map +1 -0
- package/dist/689.js +1 -0
- package/dist/689.js.map +1 -0
- package/dist/709.js +1 -0
- package/dist/709.js.map +1 -0
- package/dist/712.js +1 -0
- package/dist/712.js.map +1 -0
- package/dist/720.js +1 -0
- package/dist/720.js.map +1 -0
- package/dist/742.js +1 -0
- package/dist/742.js.map +1 -0
- package/dist/771.js +1 -0
- package/dist/771.js.map +1 -0
- package/dist/806.js +1 -0
- package/dist/806.js.map +1 -0
- package/dist/912.js +1 -0
- package/dist/912.js.map +1 -0
- package/dist/913.js +1 -0
- package/dist/913.js.map +1 -0
- package/dist/940.js +1 -0
- package/dist/940.js.map +1 -0
- package/dist/957.js +15 -0
- package/dist/957.js.map +1 -0
- package/dist/digihmis-esm-patient-registration-app.js +6 -0
- package/dist/digihmis-esm-patient-registration-app.js.buildmanifest.json +827 -0
- package/dist/digihmis-esm-patient-registration-app.js.map +1 -0
- package/dist/main.js +17 -0
- package/dist/main.js.map +1 -0
- package/dist/routes.json +1 -0
- package/jest.config.js +26 -0
- package/package.json +51 -0
- package/rspack.config.js +1 -0
- package/src/active-visit-table/active-visit-table.component.tsx +240 -0
- package/src/active-visit-table/active-visits.resource.ts +338 -0
- package/src/active-visit-table/active-visits.scss +211 -0
- package/src/active-visit-table/empty-data-illustration.component.tsx +39 -0
- package/src/checkin-form/base-visit-type.component.tsx +102 -0
- package/src/checkin-form/base-visit-type.scss +75 -0
- package/src/checkin-form/checkin-form.scss +167 -0
- package/src/checkin-form/checkin-form.workspace.tsx +703 -0
- package/src/checkin-form/hooks/useDefaultFacilityLocation.ts +15 -0
- package/src/checkin-form/hooks/useDefaultVisitLocation.ts +24 -0
- package/src/checkin-form/hooks/useOfflineVisitType.ts +18 -0
- package/src/checkin-form/hooks/usePatientHistory.ts +40 -0
- package/src/checkin-form/hooks/useRecommendedVisitTypes.ts +34 -0
- package/src/checkin-form/hooks/useVisitAttributeType.ts +102 -0
- package/src/checkin-form/location-selector.component.tsx +86 -0
- package/src/checkin-form/recommended-visit-type.component.tsx +32 -0
- package/src/checkin-form/visit-attribute-type.component.tsx +256 -0
- package/src/checkin-form/visit-attribute-type.scss +5 -0
- package/src/checkin-form/visit-date-time.component.tsx +201 -0
- package/src/checkin-form/visit-form.resource.ts +308 -0
- package/src/components/custom-card/compact-patient-banner.component.tsx +70 -0
- package/src/components/custom-card/compact-patient-banner.scss +34 -0
- package/src/components/custom-card/custom-loader.component.tsx +22 -0
- package/src/components/custom-card/patient-search-context.ts +30 -0
- package/src/components/custom-input/autosuggest/autosuggest.component.tsx +213 -0
- package/src/components/custom-input/autosuggest/autosuggest.scss +158 -0
- package/src/components/custom-input/autosuggest/autosuggest.test.tsx +168 -0
- package/src/components/custom-patient-banner/custom-patient-banner.component.tsx +39 -0
- package/src/components/custom-patient-banner/custom-patient-banner.resource.ts +32 -0
- package/src/components/custom-patient-banner/custom-patient-banner.scss +26 -0
- package/src/config-schema.ts +511 -0
- package/src/constant.ts +6 -0
- package/src/constants/index.ts +1 -0
- package/src/dashboard.meta.ts +8 -0
- package/src/declarations.d.ts +6 -0
- package/src/empty-svg/empty-svg.component.tsx +565 -0
- package/src/icon-wrapper/icon-wrapper.extension.tsx +17 -0
- package/src/identifier-workspace/identifier-configure-form.workspace.tsx +278 -0
- package/src/identifier-workspace/identifier-configure.scss +106 -0
- package/src/identifier-workspace/identifier.resource.ts +90 -0
- package/src/index.ts +33 -0
- package/src/left-panel/left-panel.component.tsx +54 -0
- package/src/left-panel/left-panel.scss +13 -0
- package/src/page-header/page-header.component.tsx +35 -0
- package/src/page-header/page-header.scss +76 -0
- package/src/patient-tags/deceased-patient-tag.extension.tsx +41 -0
- package/src/patient-tags/deceased-patient-tag.scss +15 -0
- package/src/patient-tags/patient-tags.resource.ts +30 -0
- package/src/patient-tags/visit-tag.extension.tsx +43 -0
- package/src/patient-tags/visit-tag.scss +19 -0
- package/src/registration-form/form-manager.ts +449 -0
- package/src/registration-form/registration-form.component.tsx +1565 -0
- package/src/registration-form/registration-form.resource.ts +264 -0
- package/src/registration-form/registration-form.scss +282 -0
- package/src/routes.json +62 -0
- package/src/search-bar/search-bar.component.tsx +285 -0
- package/src/search-bar/search-bar.resource.ts +274 -0
- package/src/search-bar/search-bar.scss +427 -0
- package/src/search-dashboard/search-dashboard.component.tsx +17 -0
- package/src/search-dashboard/search-dashboard.scss +13 -0
- package/src/setup-tests.ts +1 -0
- package/src/type/index.ts +463 -0
- package/src/utils/fhir-mapper.ts +73 -0
- package/src/visit-summary/visit-summary.component.tsx +32 -0
- package/src/visit-summary/visit-summary.resource.ts +56 -0
- package/src/visit-summary/visit-summary.scss +74 -0
- package/translations/am.json +112 -0
- package/translations/ar.json +120 -0
- package/translations/en.json +112 -0
- package/translations/es.json +114 -0
- package/translations/fr.json +114 -0
- package/translations/he.json +114 -0
- package/translations/km.json +111 -0
- package/translations/pt.json +114 -0
- package/translations/sw.json +112 -0
- package/translations/vi.json +111 -0
- package/translations/zh.json +111 -0
- package/tsconfig.json +5 -0
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
{
|
|
2
|
+
"activeVisits": "ביקורים פעילים",
|
|
3
|
+
"addRelationshipButtonText": "הוסף קשר",
|
|
4
|
+
"address": "כתובת",
|
|
5
|
+
"allFieldsRequiredText": "כל השדות נדרשים אלא אם כן מסומנים כאופציונליים",
|
|
6
|
+
"AM": "AM",
|
|
7
|
+
"autoGenerated": "Auto-generated",
|
|
8
|
+
"back": "חזור",
|
|
9
|
+
"basicInformation": "1. מידע בסיסי",
|
|
10
|
+
"birth": "לידה",
|
|
11
|
+
"cancel": "ביטול",
|
|
12
|
+
"causeOfDeathInputLabel": "סיבת המוות",
|
|
13
|
+
"checkFilters": "Check the filters above",
|
|
14
|
+
"checkInFormTitle": "Check In form",
|
|
15
|
+
"configure": "הגדר",
|
|
16
|
+
"contactDetails": "2. פרטי התקשרות",
|
|
17
|
+
"county": "מחוז",
|
|
18
|
+
"dateOfBirthKnown": "תאריך לידה ידוע?",
|
|
19
|
+
"dateOfBirthLabelText": "תאריך לידה",
|
|
20
|
+
"deathDate": "Date of Death",
|
|
21
|
+
"deathInformation": "3. מידע על פטירה",
|
|
22
|
+
"deceased": "Deceased",
|
|
23
|
+
"deleteRelationshipTooltipText": "מחק",
|
|
24
|
+
"email": "כתובת דוא\"ל",
|
|
25
|
+
"emailPlaceholder": "joedoe@email.com",
|
|
26
|
+
"endDate": "End date",
|
|
27
|
+
"endTime": "End time",
|
|
28
|
+
"endTimeFormat": "End time format",
|
|
29
|
+
"enter": "Enter",
|
|
30
|
+
"enterIdentifierNumber": "הזן מספר מזהה",
|
|
31
|
+
"enterIdOrScanCard": "הזן מספר זיהוי או סרוק את כרטיס המטופל",
|
|
32
|
+
"enterNonCodedCauseOfDeath": "הזן סיבת מוות לא מקודדת",
|
|
33
|
+
"error": "שגיאה",
|
|
34
|
+
"errorLoadingIdentifiers": "Error loading identifiers",
|
|
35
|
+
"errorSearching": "שגיאה בחיפוש מטופלים",
|
|
36
|
+
"estimatedAgeInMonthsLabelText": "גיל משוער בחודשים",
|
|
37
|
+
"estimatedAgeInYearsLabelText": "גיל משוער בשנים",
|
|
38
|
+
"failedToLoadCauseOfDeath": "טעינת אפשרויות סיבת המוות נכשלה",
|
|
39
|
+
"failedToLoadRelationshipTypes": "טעינת סוגי קשרים נכשלה",
|
|
40
|
+
"familyName": "שם משפחה",
|
|
41
|
+
"filterActiveVisits": "Filter active visits",
|
|
42
|
+
"filterTable": "Filter table",
|
|
43
|
+
"firstName": "שם פרטי",
|
|
44
|
+
"genderLabelText": "מגדר",
|
|
45
|
+
"goBack": "חזור",
|
|
46
|
+
"identifierAutoGenerateInfo": "This identifier will be automatically generated when you save the patient.",
|
|
47
|
+
"identifiersConfigured_one": "{{count}} identifier(s) configured",
|
|
48
|
+
"identifiersConfigured_two": "{{count}} identifier(s) configured",
|
|
49
|
+
"identifiersConfigured_other": "{{count}} identifier(s) configured",
|
|
50
|
+
"identifiersUpdated": "Identifiers updated",
|
|
51
|
+
"idFieldLabelText": "מזהים",
|
|
52
|
+
"incompleteRelationships": "אנא השלם את כל שדות הקשר",
|
|
53
|
+
"isPatientDeceased": "האם המטופל נפטר?",
|
|
54
|
+
"loading": "טוען...",
|
|
55
|
+
"maritalStatusLabelText": "מצב משפחתי",
|
|
56
|
+
"middleName": "שם אמצעי",
|
|
57
|
+
"no": "לא",
|
|
58
|
+
"noActiveVisitsForLocation": "There are no active visits to display for this location.",
|
|
59
|
+
"noCauseOfDeathOptions": "אין אפשרויות סיבת מוות זמינות. אנא הגדר את UUID של המושג.",
|
|
60
|
+
"noIdentifiersConfigured": "No identifiers configured. Click Configure to add identifiers.",
|
|
61
|
+
"nonCodedCauseOfDeath": "סיבת מוות לא מקודדת",
|
|
62
|
+
"noOptions": "אין אפשרויות זמינות",
|
|
63
|
+
"noPatientFound": "לא נמצא מטופל",
|
|
64
|
+
"noVisitsToDisplay": "No visits to display",
|
|
65
|
+
"optional": "אופציונלי",
|
|
66
|
+
"patientName": "שם המטופל",
|
|
67
|
+
"patientNameKnown": "האם שם המטופל ידוע?",
|
|
68
|
+
"patientRegistered": "המטופל נרשם בהצלחה",
|
|
69
|
+
"phoneNumber": "מספר טלפון",
|
|
70
|
+
"phoneNumberPlaceholder": "לדוגמה, 0712345678",
|
|
71
|
+
"PM": "PM",
|
|
72
|
+
"recentlyViewed": "מטופלים שנצפו לאחרונה",
|
|
73
|
+
"registerAPatient": "רישום מטופל",
|
|
74
|
+
"registerPatient": "רישום מטופל",
|
|
75
|
+
"relationship": "קשר",
|
|
76
|
+
"relationshipDetails": "4. קשר",
|
|
77
|
+
"relationshipPersonMustExist": "אדם קשור חייב להיות אדם קיים",
|
|
78
|
+
"relationshipPlaceholder": "קשר",
|
|
79
|
+
"relationshipRemovedText": "הקשר הוסר",
|
|
80
|
+
"relationshipToPatient": "קשר למטופל",
|
|
81
|
+
"relativeFullNameLabelText": "שם מלא",
|
|
82
|
+
"relativeNamePlaceholder": "שם פרטי שם משפחה",
|
|
83
|
+
"required": "Required",
|
|
84
|
+
"restoreRelationshipActionButton": "בטל",
|
|
85
|
+
"scheduledForToday": "מתוכנן להיום",
|
|
86
|
+
"search": "חפש",
|
|
87
|
+
"searchForPatient": "חפש מטופל",
|
|
88
|
+
"searchResultsCount_one": "נמצאו {{count}} תוצאות",
|
|
89
|
+
"searchResultsCount_two": "{{count}} result(s) found",
|
|
90
|
+
"searchResultsCount_other": "נמצאו {{count}} תוצאות",
|
|
91
|
+
"selectAnOption": "בחר אפשרות",
|
|
92
|
+
"selectCounty": "בחר מחוז",
|
|
93
|
+
"selectLocation": "Select a location",
|
|
94
|
+
"selectSubCounty": "בחר תת-מחוז",
|
|
95
|
+
"selectWard": "בחר אגף",
|
|
96
|
+
"startDate": "Start date",
|
|
97
|
+
"startTime": "Start time",
|
|
98
|
+
"startTimeFormat": "Start time format",
|
|
99
|
+
"subCounty": "תת-מחוז",
|
|
100
|
+
"submissionFailed": "שליחת הטופס נכשלה",
|
|
101
|
+
"submitting": "שולח...",
|
|
102
|
+
"success": "הצלחה",
|
|
103
|
+
"totalVisits": "סך הביקורים היום",
|
|
104
|
+
"tryDifferentSearch": "נסה לחפש עם מזהה או שם אחר",
|
|
105
|
+
"unknownPatientName": "Unknown Patient",
|
|
106
|
+
"unknownPatientNameDescription": "Default names will be used for this patient: {{givenName}} {{familyName}}",
|
|
107
|
+
"validationError": "שגיאת אימות",
|
|
108
|
+
"visitLocation": "Visit Location",
|
|
109
|
+
"visitStartAndEndDate": "Visit start and end date",
|
|
110
|
+
"visitStartDate": "Visit start date",
|
|
111
|
+
"ward": "אגף",
|
|
112
|
+
"years": "yrs",
|
|
113
|
+
"yes": "כן"
|
|
114
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
{
|
|
2
|
+
"activeVisits": "ការទស្សនាសកម្ម",
|
|
3
|
+
"addRelationshipButtonText": "បន្ថែមទំនាក់ទំនង",
|
|
4
|
+
"address": "អាសយដ្ឋាន",
|
|
5
|
+
"allFieldsRequiredText": "វាលទាំងអស់ត្រូវបានទាមទារ លើកលែងតែមានការកំណត់ថាជាជម្រើស",
|
|
6
|
+
"AM": "AM",
|
|
7
|
+
"autoGenerated": "Auto-generated",
|
|
8
|
+
"back": "ត្រលប់ក្រោយ",
|
|
9
|
+
"basicInformation": "1. ព័ត៌មានមូលដ្ឋាន",
|
|
10
|
+
"birth": "កំណើត",
|
|
11
|
+
"cancel": "បោះបង់",
|
|
12
|
+
"causeOfDeathInputLabel": "មូលហេតុនៃការស្លាប់",
|
|
13
|
+
"checkFilters": "Check the filters above",
|
|
14
|
+
"checkInFormTitle": "Check In form",
|
|
15
|
+
"configure": "កំណត់រចនាសម្ព័ន្ធ",
|
|
16
|
+
"contactDetails": "2. ព័ត៌មានលម្អិតទំនាក់ទំនង",
|
|
17
|
+
"county": "ខោនធី",
|
|
18
|
+
"dateOfBirthKnown": "ថ្ងៃកំណើតត្រូវបានដឹងឬ?",
|
|
19
|
+
"dateOfBirthLabelText": "ថ្ងៃកំណើត",
|
|
20
|
+
"deathDate": "Date of Death",
|
|
21
|
+
"deathInformation": "3. ព័ត៌មានអំពីការស្លាប់",
|
|
22
|
+
"deceased": "Deceased",
|
|
23
|
+
"deleteRelationshipTooltipText": "លុប",
|
|
24
|
+
"email": "អាសយដ្ឋានអ៊ីមែល",
|
|
25
|
+
"emailPlaceholder": "joedoe@email.com",
|
|
26
|
+
"endDate": "End date",
|
|
27
|
+
"endTime": "End time",
|
|
28
|
+
"endTimeFormat": "End time format",
|
|
29
|
+
"enter": "Enter",
|
|
30
|
+
"enterIdentifierNumber": "បញ្ចូលលេខសម្គាល់",
|
|
31
|
+
"enterIdOrScanCard": "បញ្ចូលលេខអត្តសញ្ញាណប័ណ្ណ ឬស្កេនកាតអ្នកជំងឺ",
|
|
32
|
+
"enterNonCodedCauseOfDeath": "បញ្ចូលមូលហេតុនៃការស្លាប់ដែលមិនមានលេខកូដ",
|
|
33
|
+
"error": "កំហុស",
|
|
34
|
+
"errorLoadingIdentifiers": "Error loading identifiers",
|
|
35
|
+
"errorSearching": "កំហុសក្នុងការស្វែងរកអ្នកជំងឺ",
|
|
36
|
+
"estimatedAgeInMonthsLabelText": "អាយុប៉ាន់ស្មានជាខែ",
|
|
37
|
+
"estimatedAgeInYearsLabelText": "អាយុប៉ាន់ស្មានជាឆ្នាំ",
|
|
38
|
+
"failedToLoadCauseOfDeath": "បរាជ័យក្នុងការផ្ទុកជម្រើសមូលហេតុនៃការស្លាប់",
|
|
39
|
+
"failedToLoadRelationshipTypes": "បរាជ័យក្នុងការផ្ទុកប្រភេទទំនាក់ទំនង",
|
|
40
|
+
"familyName": "នាមត្រកូល",
|
|
41
|
+
"filterActiveVisits": "Filter active visits",
|
|
42
|
+
"filterTable": "Filter table",
|
|
43
|
+
"firstName": "នាមខ្លួន",
|
|
44
|
+
"genderLabelText": "ភេទ",
|
|
45
|
+
"goBack": "ត្រលប់ក្រោយ",
|
|
46
|
+
"identifierAutoGenerateInfo": "This identifier will be automatically generated when you save the patient.",
|
|
47
|
+
"identifiersConfigured_other": "{{count}} identifier(s) configured",
|
|
48
|
+
"identifiersUpdated": "Identifiers updated",
|
|
49
|
+
"idFieldLabelText": "កម្មវិធីសម្គាល់",
|
|
50
|
+
"incompleteRelationships": "សូមបំពេញវាលទំនាក់ទំនងទាំងអស់",
|
|
51
|
+
"isPatientDeceased": "អ្នកជំងឺបានស្លាប់ឬ?",
|
|
52
|
+
"loading": "កំពុងផ្ទុក...",
|
|
53
|
+
"maritalStatusLabelText": "ស្ថានភាពអាពាហ៍ពិពាហ៍",
|
|
54
|
+
"middleName": "នាមកណ្តាល",
|
|
55
|
+
"no": "ទេ",
|
|
56
|
+
"noActiveVisitsForLocation": "There are no active visits to display for this location.",
|
|
57
|
+
"noCauseOfDeathOptions": "គ្មានជម្រើសមូលហេតុនៃការស្លាប់ទេ។ សូមកំណត់រចនាសម្ព័ន្ធ UUID នៃគំនិត។",
|
|
58
|
+
"noIdentifiersConfigured": "No identifiers configured. Click Configure to add identifiers.",
|
|
59
|
+
"nonCodedCauseOfDeath": "មូលហេតុនៃការស្លាប់ដែលមិនមានលេខកូដ",
|
|
60
|
+
"noOptions": "គ្មានជម្រើសទេ",
|
|
61
|
+
"noPatientFound": "រកមិនឃើញអ្នកជំងឺ",
|
|
62
|
+
"noVisitsToDisplay": "No visits to display",
|
|
63
|
+
"optional": "ជម្រើស",
|
|
64
|
+
"patientName": "ឈ្មោះអ្នកជំងឺ",
|
|
65
|
+
"patientNameKnown": "ឈ្មោះអ្នកជំងឺត្រូវបានដឹងឬ?",
|
|
66
|
+
"patientRegistered": "បានចុះឈ្មោះអ្នកជំងឺដោយជោគជ័យ",
|
|
67
|
+
"phoneNumber": "លេខទូរសព្ទ",
|
|
68
|
+
"phoneNumberPlaceholder": "ឧទាហរណ៍ 0712345678",
|
|
69
|
+
"PM": "PM",
|
|
70
|
+
"recentlyViewed": "អ្នកជំងឺដែលបានមើលថ្មីៗនេះ",
|
|
71
|
+
"registerAPatient": "ចុះឈ្មោះអ្នកជំងឺ",
|
|
72
|
+
"registerPatient": "ចុះឈ្មោះអ្នកជំងឺ",
|
|
73
|
+
"relationship": "ទំនាក់ទំនង",
|
|
74
|
+
"relationshipDetails": "4. ទំនាក់ទំនង",
|
|
75
|
+
"relationshipPersonMustExist": "មនុស្សដែលមានទំនាក់ទំនងត្រូវតែជាមនុស្សដែលមានស្រាប់",
|
|
76
|
+
"relationshipPlaceholder": "ទំនាក់ទំនង",
|
|
77
|
+
"relationshipRemovedText": "បានលុបទំនាក់ទំនង",
|
|
78
|
+
"relationshipToPatient": "ទំនាក់ទំនងជាមួយអ្នកជំងឺ",
|
|
79
|
+
"relativeFullNameLabelText": "ឈ្មោះពេញ",
|
|
80
|
+
"relativeNamePlaceholder": "នាមខ្លួន នាមត្រកូល",
|
|
81
|
+
"required": "Required",
|
|
82
|
+
"restoreRelationshipActionButton": "មិនធ្វើវិញ",
|
|
83
|
+
"scheduledForToday": "បានកំណត់ពេលសម្រាប់ថ្ងៃនេះ",
|
|
84
|
+
"search": "ស្វែងរក",
|
|
85
|
+
"searchForPatient": "ស្វែងរកអ្នកជំងឺ",
|
|
86
|
+
"searchResultsCount_one": "រកឃើញលទ្ធផល {{count}}",
|
|
87
|
+
"searchResultsCount_other": "រកឃើញលទ្ធផល {{count}}",
|
|
88
|
+
"selectAnOption": "ជ្រើសរើសជម្រើសមួយ",
|
|
89
|
+
"selectCounty": "ជ្រើសរើសខោនធី",
|
|
90
|
+
"selectLocation": "Select a location",
|
|
91
|
+
"selectSubCounty": "ជ្រើសរើសខោនធីរង",
|
|
92
|
+
"selectWard": "ជ្រើសរើសវួដ",
|
|
93
|
+
"startDate": "Start date",
|
|
94
|
+
"startTime": "Start time",
|
|
95
|
+
"startTimeFormat": "Start time format",
|
|
96
|
+
"subCounty": "ខោនធីរង",
|
|
97
|
+
"submissionFailed": "បរាជ័យក្នុងការដាក់ស្នើទម្រង់",
|
|
98
|
+
"submitting": "កំពុងដាក់ស្នើ...",
|
|
99
|
+
"success": "ជោគជ័យ",
|
|
100
|
+
"totalVisits": "ចំនួនការទស្សនាសរុបថ្ងៃនេះ",
|
|
101
|
+
"tryDifferentSearch": "ព្យាយាមស្វែងរកដោយប្រើកម្មវិធីសម្គាល់ ឬឈ្មោះផ្សេង",
|
|
102
|
+
"unknownPatientName": "Unknown Patient",
|
|
103
|
+
"unknownPatientNameDescription": "Default names will be used for this patient: {{givenName}} {{familyName}}",
|
|
104
|
+
"validationError": "កំហុសក្នុងការផ្ទៀងផ្ទាត់",
|
|
105
|
+
"visitLocation": "Visit Location",
|
|
106
|
+
"visitStartAndEndDate": "Visit start and end date",
|
|
107
|
+
"visitStartDate": "Visit start date",
|
|
108
|
+
"ward": "វួដ",
|
|
109
|
+
"years": "yrs",
|
|
110
|
+
"yes": "បាទ/ចាស"
|
|
111
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
{
|
|
2
|
+
"activeVisits": "Visitas Ativas",
|
|
3
|
+
"addRelationshipButtonText": "Adicionar Relacionamento",
|
|
4
|
+
"address": "Endereço",
|
|
5
|
+
"allFieldsRequiredText": "Todos os campos são obrigatórios, a menos que marcados como opcionais",
|
|
6
|
+
"AM": "AM",
|
|
7
|
+
"autoGenerated": "Auto-generated",
|
|
8
|
+
"back": "Voltar",
|
|
9
|
+
"basicInformation": "1. Informações Básicas",
|
|
10
|
+
"birth": "Nascimento",
|
|
11
|
+
"cancel": "Cancelar",
|
|
12
|
+
"causeOfDeathInputLabel": "Causa da Morte",
|
|
13
|
+
"checkFilters": "Check the filters above",
|
|
14
|
+
"checkInFormTitle": "Check In form",
|
|
15
|
+
"configure": "Configurar",
|
|
16
|
+
"contactDetails": "2. Detalhes de Contato",
|
|
17
|
+
"county": "Condado",
|
|
18
|
+
"dateOfBirthKnown": "Data de Nascimento Conhecida?",
|
|
19
|
+
"dateOfBirthLabelText": "Data de nascimento",
|
|
20
|
+
"deathDate": "Date of Death",
|
|
21
|
+
"deathInformation": "3. Informações sobre Óbito",
|
|
22
|
+
"deceased": "Deceased",
|
|
23
|
+
"deleteRelationshipTooltipText": "Excluir",
|
|
24
|
+
"email": "Endereço de E-mail",
|
|
25
|
+
"emailPlaceholder": "joedoe@email.com",
|
|
26
|
+
"endDate": "End date",
|
|
27
|
+
"endTime": "End time",
|
|
28
|
+
"endTimeFormat": "End time format",
|
|
29
|
+
"enter": "Enter",
|
|
30
|
+
"enterIdentifierNumber": "Insira o número do identificador",
|
|
31
|
+
"enterIdOrScanCard": "Insira um número de ID ou escaneie o cartão do paciente",
|
|
32
|
+
"enterNonCodedCauseOfDeath": "Insira causa de morte não codificada",
|
|
33
|
+
"error": "Erro",
|
|
34
|
+
"errorLoadingIdentifiers": "Error loading identifiers",
|
|
35
|
+
"errorSearching": "Erro ao procurar pacientes",
|
|
36
|
+
"estimatedAgeInMonthsLabelText": "Idade estimada em meses",
|
|
37
|
+
"estimatedAgeInYearsLabelText": "Idade estimada em anos",
|
|
38
|
+
"failedToLoadCauseOfDeath": "Falha ao carregar opções de causa de morte",
|
|
39
|
+
"failedToLoadRelationshipTypes": "Falha ao carregar tipos de relacionamento",
|
|
40
|
+
"familyName": "Sobrenome",
|
|
41
|
+
"filterActiveVisits": "Filter active visits",
|
|
42
|
+
"filterTable": "Filter table",
|
|
43
|
+
"firstName": "Nome",
|
|
44
|
+
"genderLabelText": "Gênero",
|
|
45
|
+
"goBack": "Voltar",
|
|
46
|
+
"identifierAutoGenerateInfo": "This identifier will be automatically generated when you save the patient.",
|
|
47
|
+
"identifiersConfigured_one": "{{count}} identifier(s) configured",
|
|
48
|
+
"identifiersConfigured_many": "{{count}} identifier(s) configured",
|
|
49
|
+
"identifiersConfigured_other": "{{count}} identifier(s) configured",
|
|
50
|
+
"identifiersUpdated": "Identifiers updated",
|
|
51
|
+
"idFieldLabelText": "Identificadores",
|
|
52
|
+
"incompleteRelationships": "Por favor, complete todos os campos de relacionamento",
|
|
53
|
+
"isPatientDeceased": "O paciente é falecido?",
|
|
54
|
+
"loading": "Carregando...",
|
|
55
|
+
"maritalStatusLabelText": "Estado Civil",
|
|
56
|
+
"middleName": "Nome do Meio",
|
|
57
|
+
"no": "Não",
|
|
58
|
+
"noActiveVisitsForLocation": "There are no active visits to display for this location.",
|
|
59
|
+
"noCauseOfDeathOptions": "Nenhuma opção de causa de morte disponível. Por favor, configure o UUID do conceito.",
|
|
60
|
+
"noIdentifiersConfigured": "No identifiers configured. Click Configure to add identifiers.",
|
|
61
|
+
"nonCodedCauseOfDeath": "Causa de morte não codificada",
|
|
62
|
+
"noOptions": "Nenhuma opção disponível",
|
|
63
|
+
"noPatientFound": "Nenhum paciente encontrado",
|
|
64
|
+
"noVisitsToDisplay": "No visits to display",
|
|
65
|
+
"optional": "Opcional",
|
|
66
|
+
"patientName": "Nome do Paciente",
|
|
67
|
+
"patientNameKnown": "O nome do paciente é conhecido?",
|
|
68
|
+
"patientRegistered": "Paciente registrado com sucesso",
|
|
69
|
+
"phoneNumber": "Número de Telefone",
|
|
70
|
+
"phoneNumberPlaceholder": "ex., 0712345678",
|
|
71
|
+
"PM": "PM",
|
|
72
|
+
"recentlyViewed": "Pacientes visualizados recentemente",
|
|
73
|
+
"registerAPatient": "Registrar um paciente",
|
|
74
|
+
"registerPatient": "Registrar Paciente",
|
|
75
|
+
"relationship": "Relacionamento",
|
|
76
|
+
"relationshipDetails": "4. Relacionamento",
|
|
77
|
+
"relationshipPersonMustExist": "A pessoa relacionada deve ser uma pessoa existente",
|
|
78
|
+
"relationshipPlaceholder": "Relacionamento",
|
|
79
|
+
"relationshipRemovedText": "Relacionamento removido",
|
|
80
|
+
"relationshipToPatient": "Relacionamento com o paciente",
|
|
81
|
+
"relativeFullNameLabelText": "Nome completo",
|
|
82
|
+
"relativeNamePlaceholder": "Nome Sobrenome",
|
|
83
|
+
"required": "Required",
|
|
84
|
+
"restoreRelationshipActionButton": "Desfazer",
|
|
85
|
+
"scheduledForToday": "Agendado para Hoje",
|
|
86
|
+
"search": "Pesquisar",
|
|
87
|
+
"searchForPatient": "Procurar um paciente",
|
|
88
|
+
"searchResultsCount_one": "{{count}} resultado(s) encontrado(s)",
|
|
89
|
+
"searchResultsCount_many": "{{count}} result(s) found",
|
|
90
|
+
"searchResultsCount_other": "{{count}} resultado(s) encontrado(s)",
|
|
91
|
+
"selectAnOption": "Selecione uma opção",
|
|
92
|
+
"selectCounty": "Selecione um condado",
|
|
93
|
+
"selectLocation": "Select a location",
|
|
94
|
+
"selectSubCounty": "Selecione um subcondado",
|
|
95
|
+
"selectWard": "Selecione uma ala",
|
|
96
|
+
"startDate": "Start date",
|
|
97
|
+
"startTime": "Start time",
|
|
98
|
+
"startTimeFormat": "Start time format",
|
|
99
|
+
"subCounty": "Subcondado",
|
|
100
|
+
"submissionFailed": "Falha ao enviar formulário",
|
|
101
|
+
"submitting": "Enviando...",
|
|
102
|
+
"success": "Sucesso",
|
|
103
|
+
"totalVisits": "Total de Visitas Hoje",
|
|
104
|
+
"tryDifferentSearch": "Tente pesquisar com um identificador ou nome diferente",
|
|
105
|
+
"unknownPatientName": "Unknown Patient",
|
|
106
|
+
"unknownPatientNameDescription": "Default names will be used for this patient: {{givenName}} {{familyName}}",
|
|
107
|
+
"validationError": "Erro de Validação",
|
|
108
|
+
"visitLocation": "Visit Location",
|
|
109
|
+
"visitStartAndEndDate": "Visit start and end date",
|
|
110
|
+
"visitStartDate": "Visit start date",
|
|
111
|
+
"ward": "Ala",
|
|
112
|
+
"years": "yrs",
|
|
113
|
+
"yes": "Sim"
|
|
114
|
+
}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
{
|
|
2
|
+
"activeVisits": "Ziara Zinazoendelea",
|
|
3
|
+
"addRelationshipButtonText": "Ongeza Uhusiano",
|
|
4
|
+
"address": "Anwani",
|
|
5
|
+
"allFieldsRequiredText": "Sehemu zote zinahitajika isipokuwa zilizoashiriwa kuwa za hiari",
|
|
6
|
+
"AM": "AM",
|
|
7
|
+
"autoGenerated": "Auto-generated",
|
|
8
|
+
"back": "Rudi",
|
|
9
|
+
"basicInformation": "1. Taarifa za Msingi",
|
|
10
|
+
"birth": "Kuzaliwa",
|
|
11
|
+
"cancel": "Ghairi",
|
|
12
|
+
"causeOfDeathInputLabel": "Sababu ya Kifo",
|
|
13
|
+
"checkFilters": "Check the filters above",
|
|
14
|
+
"checkInFormTitle": "Check In form",
|
|
15
|
+
"configure": "Sanidi",
|
|
16
|
+
"contactDetails": "2. Maelezo ya Mawasiliano",
|
|
17
|
+
"county": "Kaunti",
|
|
18
|
+
"dateOfBirthKnown": "Tarehe ya Kuzaliwa Inajulikana?",
|
|
19
|
+
"dateOfBirthLabelText": "Tarehe ya kuzaliwa",
|
|
20
|
+
"deathDate": "Date of Death",
|
|
21
|
+
"deathInformation": "3. Taarifa za Kifo",
|
|
22
|
+
"deceased": "Deceased",
|
|
23
|
+
"deleteRelationshipTooltipText": "Futa",
|
|
24
|
+
"email": "Anwani ya Barua Pepe",
|
|
25
|
+
"emailPlaceholder": "joedoe@email.com",
|
|
26
|
+
"endDate": "End date",
|
|
27
|
+
"endTime": "End time",
|
|
28
|
+
"endTimeFormat": "End time format",
|
|
29
|
+
"enter": "Enter",
|
|
30
|
+
"enterIdentifierNumber": "Ingiza nambari ya kitambulisho",
|
|
31
|
+
"enterIdOrScanCard": "Ingiza nambari ya kitambulisho au changanua kadi ya mgonjwa",
|
|
32
|
+
"enterNonCodedCauseOfDeath": "Ingiza sababu ya kifo isiyokuwa na msimbo",
|
|
33
|
+
"error": "Hitilafu",
|
|
34
|
+
"errorLoadingIdentifiers": "Error loading identifiers",
|
|
35
|
+
"errorSearching": "Hitilafu katika kutafuta wagonjwa",
|
|
36
|
+
"estimatedAgeInMonthsLabelText": "Umri unaokadiriwa kwa miezi",
|
|
37
|
+
"estimatedAgeInYearsLabelText": "Umri unaokadiriwa kwa miaka",
|
|
38
|
+
"failedToLoadCauseOfDeath": "Imeshindwa kupakia chaguo za sababu ya kifo",
|
|
39
|
+
"failedToLoadRelationshipTypes": "Imeshindwa kupakia aina za uhusiano",
|
|
40
|
+
"familyName": "Jina la Ukoo",
|
|
41
|
+
"filterActiveVisits": "Filter active visits",
|
|
42
|
+
"filterTable": "Filter table",
|
|
43
|
+
"firstName": "Jina la Kwanza",
|
|
44
|
+
"genderLabelText": "Jinsia",
|
|
45
|
+
"goBack": "Rudi nyuma",
|
|
46
|
+
"identifierAutoGenerateInfo": "This identifier will be automatically generated when you save the patient.",
|
|
47
|
+
"identifiersConfigured_one": "{{count}} identifier(s) configured",
|
|
48
|
+
"identifiersConfigured_other": "{{count}} identifier(s) configured",
|
|
49
|
+
"identifiersUpdated": "Identifiers updated",
|
|
50
|
+
"idFieldLabelText": "Vitambulisho",
|
|
51
|
+
"incompleteRelationships": "Tafadhali kamilisha sehemu zote za uhusiano",
|
|
52
|
+
"isPatientDeceased": "Je, mgonjwa amefariki?",
|
|
53
|
+
"loading": "Inapakia...",
|
|
54
|
+
"maritalStatusLabelText": "Hali ya Ndoa",
|
|
55
|
+
"middleName": "Jina la Kati",
|
|
56
|
+
"no": "Hapana",
|
|
57
|
+
"noActiveVisitsForLocation": "There are no active visits to display for this location.",
|
|
58
|
+
"noCauseOfDeathOptions": "Hakuna chaguo za sababu ya kifo zinazopatikana. Tafadhali sanidi UUID ya dhana.",
|
|
59
|
+
"noIdentifiersConfigured": "No identifiers configured. Click Configure to add identifiers.",
|
|
60
|
+
"nonCodedCauseOfDeath": "Sababu ya kifo isiyokuwa na msimbo",
|
|
61
|
+
"noOptions": "Hakuna chaguo zinazopatikana",
|
|
62
|
+
"noPatientFound": "Hakuna mgonjwa aliyepatikana",
|
|
63
|
+
"noVisitsToDisplay": "No visits to display",
|
|
64
|
+
"optional": "Si lazima",
|
|
65
|
+
"patientName": "Jina la Mgonjwa",
|
|
66
|
+
"patientNameKnown": "Je, jina la mgonjwa linajulikana?",
|
|
67
|
+
"patientRegistered": "Mgonjwa amesajiliwa kwa mafanikio",
|
|
68
|
+
"phoneNumber": "Nambari ya Simu",
|
|
69
|
+
"phoneNumberPlaceholder": "mfano, 0712345678",
|
|
70
|
+
"PM": "PM",
|
|
71
|
+
"recentlyViewed": "Wagonjwa walioangaliwa hivi karibuni",
|
|
72
|
+
"registerAPatient": "Sajili mgonjwa",
|
|
73
|
+
"registerPatient": "Sajili Mgonjwa",
|
|
74
|
+
"relationship": "Uhusiano",
|
|
75
|
+
"relationshipDetails": "4. Uhusiano",
|
|
76
|
+
"relationshipPersonMustExist": "Mtu aliye na uhusiano lazima awe mtu aliyepo",
|
|
77
|
+
"relationshipPlaceholder": "Uhusiano",
|
|
78
|
+
"relationshipRemovedText": "Uhusiano umeondolewa",
|
|
79
|
+
"relationshipToPatient": "Uhusiano na mgonjwa",
|
|
80
|
+
"relativeFullNameLabelText": "Jina kamili",
|
|
81
|
+
"relativeNamePlaceholder": "Jina la Kwanza Jina la Ukoo",
|
|
82
|
+
"required": "Required",
|
|
83
|
+
"restoreRelationshipActionButton": "Tendua",
|
|
84
|
+
"scheduledForToday": "Imepangwa kwa Leo",
|
|
85
|
+
"search": "Tafuta",
|
|
86
|
+
"searchForPatient": "Tafuta mgonjwa",
|
|
87
|
+
"searchResultsCount_one": "Matokeo {{count}} yamepatikana",
|
|
88
|
+
"searchResultsCount_other": "Matokeo {{count}} yamepatikana",
|
|
89
|
+
"selectAnOption": "Chagua chaguo",
|
|
90
|
+
"selectCounty": "Chagua kaunti",
|
|
91
|
+
"selectLocation": "Select a location",
|
|
92
|
+
"selectSubCounty": "Chagua kaunti ndogo",
|
|
93
|
+
"selectWard": "Chagua wodi",
|
|
94
|
+
"startDate": "Start date",
|
|
95
|
+
"startTime": "Start time",
|
|
96
|
+
"startTimeFormat": "Start time format",
|
|
97
|
+
"subCounty": "Kaunti ndogo",
|
|
98
|
+
"submissionFailed": "Imeshindwa kuwasilisha fomu",
|
|
99
|
+
"submitting": "Inawasilisha...",
|
|
100
|
+
"success": "Mafanikio",
|
|
101
|
+
"totalVisits": "Jumla ya Ziara Leo",
|
|
102
|
+
"tryDifferentSearch": "Jaribu kutafuta kwa kitambulisho au jina tofauti",
|
|
103
|
+
"unknownPatientName": "Unknown Patient",
|
|
104
|
+
"unknownPatientNameDescription": "Default names will be used for this patient: {{givenName}} {{familyName}}",
|
|
105
|
+
"validationError": "Hitilafu ya Uthibitishaji",
|
|
106
|
+
"visitLocation": "Visit Location",
|
|
107
|
+
"visitStartAndEndDate": "Visit start and end date",
|
|
108
|
+
"visitStartDate": "Visit start date",
|
|
109
|
+
"ward": "Wodi",
|
|
110
|
+
"years": "yrs",
|
|
111
|
+
"yes": "Ndiyo"
|
|
112
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
{
|
|
2
|
+
"activeVisits": "Lượt Thăm Khám Đang Hoạt Động",
|
|
3
|
+
"addRelationshipButtonText": "Thêm Mối Quan Hệ",
|
|
4
|
+
"address": "Địa Chỉ",
|
|
5
|
+
"allFieldsRequiredText": "Tất cả các trường đều bắt buộc trừ khi được đánh dấu là tùy chọn",
|
|
6
|
+
"AM": "AM",
|
|
7
|
+
"autoGenerated": "Auto-generated",
|
|
8
|
+
"back": "Quay lại",
|
|
9
|
+
"basicInformation": "1. Thông Tin Cơ Bản",
|
|
10
|
+
"birth": "Sinh",
|
|
11
|
+
"cancel": "Hủy",
|
|
12
|
+
"causeOfDeathInputLabel": "Nguyên Nhân Tử Vong",
|
|
13
|
+
"checkFilters": "Check the filters above",
|
|
14
|
+
"checkInFormTitle": "Check In form",
|
|
15
|
+
"configure": "Cấu Hình",
|
|
16
|
+
"contactDetails": "2. Chi Tiết Liên Hệ",
|
|
17
|
+
"county": "Quận",
|
|
18
|
+
"dateOfBirthKnown": "Biết Ngày Sinh?",
|
|
19
|
+
"dateOfBirthLabelText": "Ngày sinh",
|
|
20
|
+
"deathDate": "Date of Death",
|
|
21
|
+
"deathInformation": "3. Thông Tin Tử Vong",
|
|
22
|
+
"deceased": "Deceased",
|
|
23
|
+
"deleteRelationshipTooltipText": "Xóa",
|
|
24
|
+
"email": "Địa Chỉ Email",
|
|
25
|
+
"emailPlaceholder": "joedoe@email.com",
|
|
26
|
+
"endDate": "End date",
|
|
27
|
+
"endTime": "End time",
|
|
28
|
+
"endTimeFormat": "End time format",
|
|
29
|
+
"enter": "Enter",
|
|
30
|
+
"enterIdentifierNumber": "Nhập số định danh",
|
|
31
|
+
"enterIdOrScanCard": "Nhập số ID hoặc quét thẻ bệnh nhân",
|
|
32
|
+
"enterNonCodedCauseOfDeath": "Nhập nguyên nhân tử vong không có mã",
|
|
33
|
+
"error": "Lỗi",
|
|
34
|
+
"errorLoadingIdentifiers": "Error loading identifiers",
|
|
35
|
+
"errorSearching": "Lỗi khi tìm kiếm bệnh nhân",
|
|
36
|
+
"estimatedAgeInMonthsLabelText": "Tuổi ước tính theo tháng",
|
|
37
|
+
"estimatedAgeInYearsLabelText": "Tuổi ước tính theo năm",
|
|
38
|
+
"failedToLoadCauseOfDeath": "Không thể tải các tùy chọn nguyên nhân tử vong",
|
|
39
|
+
"failedToLoadRelationshipTypes": "Không thể tải các loại mối quan hệ",
|
|
40
|
+
"familyName": "Họ",
|
|
41
|
+
"filterActiveVisits": "Filter active visits",
|
|
42
|
+
"filterTable": "Filter table",
|
|
43
|
+
"firstName": "Tên",
|
|
44
|
+
"genderLabelText": "Giới Tính",
|
|
45
|
+
"goBack": "Quay lại",
|
|
46
|
+
"identifierAutoGenerateInfo": "This identifier will be automatically generated when you save the patient.",
|
|
47
|
+
"identifiersConfigured_other": "{{count}} identifier(s) configured",
|
|
48
|
+
"identifiersUpdated": "Identifiers updated",
|
|
49
|
+
"idFieldLabelText": "Số Định Danh",
|
|
50
|
+
"incompleteRelationships": "Vui lòng hoàn thành tất cả các trường mối quan hệ",
|
|
51
|
+
"isPatientDeceased": "Bệnh nhân đã qua đời?",
|
|
52
|
+
"loading": "Đang tải...",
|
|
53
|
+
"maritalStatusLabelText": "Tình Trạng Hôn Nhân",
|
|
54
|
+
"middleName": "Tên Đệm",
|
|
55
|
+
"no": "Không",
|
|
56
|
+
"noActiveVisitsForLocation": "There are no active visits to display for this location.",
|
|
57
|
+
"noCauseOfDeathOptions": "Không có tùy chọn nguyên nhân tử vong nào. Vui lòng cấu hình UUID khái niệm.",
|
|
58
|
+
"noIdentifiersConfigured": "No identifiers configured. Click Configure to add identifiers.",
|
|
59
|
+
"nonCodedCauseOfDeath": "Nguyên nhân tử vong không có mã",
|
|
60
|
+
"noOptions": "Không có tùy chọn nào",
|
|
61
|
+
"noPatientFound": "Không tìm thấy bệnh nhân",
|
|
62
|
+
"noVisitsToDisplay": "No visits to display",
|
|
63
|
+
"optional": "Tùy Chọn",
|
|
64
|
+
"patientName": "Tên Bệnh Nhân",
|
|
65
|
+
"patientNameKnown": "Tên bệnh nhân đã biết?",
|
|
66
|
+
"patientRegistered": "Đã đăng ký bệnh nhân thành công",
|
|
67
|
+
"phoneNumber": "Số Điện Thoại",
|
|
68
|
+
"phoneNumberPlaceholder": "ví dụ: 0712345678",
|
|
69
|
+
"PM": "PM",
|
|
70
|
+
"recentlyViewed": "Bệnh nhân đã xem gần đây",
|
|
71
|
+
"registerAPatient": "Đăng ký bệnh nhân",
|
|
72
|
+
"registerPatient": "Đăng Ký Bệnh Nhân",
|
|
73
|
+
"relationship": "Mối Quan Hệ",
|
|
74
|
+
"relationshipDetails": "4. Mối Quan Hệ",
|
|
75
|
+
"relationshipPersonMustExist": "Người có quan hệ phải là người hiện có",
|
|
76
|
+
"relationshipPlaceholder": "Mối quan hệ",
|
|
77
|
+
"relationshipRemovedText": "Đã xóa mối quan hệ",
|
|
78
|
+
"relationshipToPatient": "Mối quan hệ với bệnh nhân",
|
|
79
|
+
"relativeFullNameLabelText": "Họ và tên",
|
|
80
|
+
"relativeNamePlaceholder": "Tên Họ",
|
|
81
|
+
"required": "Required",
|
|
82
|
+
"restoreRelationshipActionButton": "Hoàn tác",
|
|
83
|
+
"scheduledForToday": "Đã Lên Lịch Cho Hôm Nay",
|
|
84
|
+
"search": "Tìm kiếm",
|
|
85
|
+
"searchForPatient": "Tìm kiếm bệnh nhân",
|
|
86
|
+
"searchResultsCount_one": "Tìm thấy {{count}} kết quả",
|
|
87
|
+
"searchResultsCount_other": "Tìm thấy {{count}} kết quả",
|
|
88
|
+
"selectAnOption": "Chọn một tùy chọn",
|
|
89
|
+
"selectCounty": "Chọn một quận",
|
|
90
|
+
"selectLocation": "Select a location",
|
|
91
|
+
"selectSubCounty": "Chọn một quận phụ",
|
|
92
|
+
"selectWard": "Chọn một phường",
|
|
93
|
+
"startDate": "Start date",
|
|
94
|
+
"startTime": "Start time",
|
|
95
|
+
"startTimeFormat": "Start time format",
|
|
96
|
+
"subCounty": "Quận phụ",
|
|
97
|
+
"submissionFailed": "Không thể gửi biểu mẫu",
|
|
98
|
+
"submitting": "Đang gửi...",
|
|
99
|
+
"success": "Thành Công",
|
|
100
|
+
"totalVisits": "Tổng Số Lượt Thăm Khám Hôm Nay",
|
|
101
|
+
"tryDifferentSearch": "Thử tìm kiếm bằng số định danh hoặc tên khác",
|
|
102
|
+
"unknownPatientName": "Unknown Patient",
|
|
103
|
+
"unknownPatientNameDescription": "Default names will be used for this patient: {{givenName}} {{familyName}}",
|
|
104
|
+
"validationError": "Lỗi Xác Thực",
|
|
105
|
+
"visitLocation": "Visit Location",
|
|
106
|
+
"visitStartAndEndDate": "Visit start and end date",
|
|
107
|
+
"visitStartDate": "Visit start date",
|
|
108
|
+
"ward": "Phường",
|
|
109
|
+
"years": "yrs",
|
|
110
|
+
"yes": "Có"
|
|
111
|
+
}
|