@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,112 @@
|
|
|
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_other": "{{count}} identifier(s) configured",
|
|
49
|
+
"identifiersUpdated": "Identifiers updated",
|
|
50
|
+
"idFieldLabelText": "መለያዎች",
|
|
51
|
+
"incompleteRelationships": "እባክዎ ሁሉንም የግንኙነት መስኮች ያጠናቅቁ",
|
|
52
|
+
"isPatientDeceased": "ታካሚው ሞቷል?",
|
|
53
|
+
"loading": "በመጫን ላይ...",
|
|
54
|
+
"maritalStatusLabelText": "የጋብቻ ሁኔታ",
|
|
55
|
+
"middleName": "የመካከለኛ ስም",
|
|
56
|
+
"no": "አይ",
|
|
57
|
+
"noActiveVisitsForLocation": "There are no active visits to display for this location.",
|
|
58
|
+
"noCauseOfDeathOptions": "ምንም የሞት መንስኤ አማራጮች የሉም። እባክዎ የጽንሰ-ሀሳብ UUID ያዋቅሩ።",
|
|
59
|
+
"noIdentifiersConfigured": "No identifiers configured. Click Configure to add identifiers.",
|
|
60
|
+
"nonCodedCauseOfDeath": "ኮድ የሌለው የሞት መንስኤ",
|
|
61
|
+
"noOptions": "ምንም አማራጮች የሉም",
|
|
62
|
+
"noPatientFound": "ምንም ታካሚ አልተገኘም",
|
|
63
|
+
"noVisitsToDisplay": "No visits to display",
|
|
64
|
+
"optional": "አማራጭ",
|
|
65
|
+
"patientName": "የታካሚ ስም",
|
|
66
|
+
"patientNameKnown": "የታካሚው ስም ይታወቃል?",
|
|
67
|
+
"patientRegistered": "ታካሚ በተሳካ ሁኔታ ተመዝግቧል",
|
|
68
|
+
"phoneNumber": "ስልክ ቁጥር",
|
|
69
|
+
"phoneNumberPlaceholder": "ለምሳሌ፣ 0712345678",
|
|
70
|
+
"PM": "PM",
|
|
71
|
+
"recentlyViewed": "በቅርብ ጊዜ የታዩ ታካሚዎች",
|
|
72
|
+
"registerAPatient": "ታካሚ መዝግብ",
|
|
73
|
+
"registerPatient": "ታካሚ መዝግብ",
|
|
74
|
+
"relationship": "ግንኙነት",
|
|
75
|
+
"relationshipDetails": "4. ግንኙነት",
|
|
76
|
+
"relationshipPersonMustExist": "ተዛማጅ ሰው ነባር ሰው መሆን አለበት",
|
|
77
|
+
"relationshipPlaceholder": "ግንኙነት",
|
|
78
|
+
"relationshipRemovedText": "ግንኙነት ተወግዷል",
|
|
79
|
+
"relationshipToPatient": "ከታካሚው ጋር ያለው ግንኙነት",
|
|
80
|
+
"relativeFullNameLabelText": "ሙሉ ስም",
|
|
81
|
+
"relativeNamePlaceholder": "ስም የቤተሰብስም",
|
|
82
|
+
"required": "Required",
|
|
83
|
+
"restoreRelationshipActionButton": "ቀልብስ",
|
|
84
|
+
"scheduledForToday": "ዛሬ የታቀደ",
|
|
85
|
+
"search": "ፈልግ",
|
|
86
|
+
"searchForPatient": "ታካሚ ፈልግ",
|
|
87
|
+
"searchResultsCount_one": "{{count}} ውጤት(ቶች) ተገኝተዋል",
|
|
88
|
+
"searchResultsCount_other": "{{count}} ውጤት(ቶች) ተገኝተዋል",
|
|
89
|
+
"selectAnOption": "አማራጭ ምረጥ",
|
|
90
|
+
"selectCounty": "ካውንቲ ምረጥ",
|
|
91
|
+
"selectLocation": "Select a location",
|
|
92
|
+
"selectSubCounty": "ንዑስ ካውንቲ ምረጥ",
|
|
93
|
+
"selectWard": "ዋርድ ምረጥ",
|
|
94
|
+
"startDate": "Start date",
|
|
95
|
+
"startTime": "Start time",
|
|
96
|
+
"startTimeFormat": "Start time format",
|
|
97
|
+
"subCounty": "ንዑስ ካውንቲ",
|
|
98
|
+
"submissionFailed": "ቅጹን ማስገባት አልተሳካም",
|
|
99
|
+
"submitting": "በማስገባት ላይ...",
|
|
100
|
+
"success": "ስኬት",
|
|
101
|
+
"totalVisits": "ዛሬ ጠቅላላ ጉብኝቶች",
|
|
102
|
+
"tryDifferentSearch": "በተለየ መለያ ወይም ስም መፈለግ ይሞክሩ",
|
|
103
|
+
"unknownPatientName": "Unknown Patient",
|
|
104
|
+
"unknownPatientNameDescription": "Default names will be used for this patient: {{givenName}} {{familyName}}",
|
|
105
|
+
"validationError": "የማረጋገጫ ስህተት",
|
|
106
|
+
"visitLocation": "Visit Location",
|
|
107
|
+
"visitStartAndEndDate": "Visit start and end date",
|
|
108
|
+
"visitStartDate": "Visit start date",
|
|
109
|
+
"ward": "ዋርድ",
|
|
110
|
+
"years": "yrs",
|
|
111
|
+
"yes": "አዎ"
|
|
112
|
+
}
|
|
@@ -0,0 +1,120 @@
|
|
|
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_zero": "{{count}} identifier(s) configured",
|
|
48
|
+
"identifiersConfigured_one": "{{count}} identifier(s) configured",
|
|
49
|
+
"identifiersConfigured_two": "{{count}} identifier(s) configured",
|
|
50
|
+
"identifiersConfigured_few": "{{count}} identifier(s) configured",
|
|
51
|
+
"identifiersConfigured_many": "{{count}} identifier(s) configured",
|
|
52
|
+
"identifiersConfigured_other": "{{count}} identifier(s) configured",
|
|
53
|
+
"identifiersUpdated": "Identifiers updated",
|
|
54
|
+
"idFieldLabelText": "المعرفات",
|
|
55
|
+
"incompleteRelationships": "يرجى إكمال جميع حقول العلاقة",
|
|
56
|
+
"isPatientDeceased": "هل المريض متوفى؟",
|
|
57
|
+
"loading": "جاري التحميل...",
|
|
58
|
+
"maritalStatusLabelText": "الحالة الاجتماعية",
|
|
59
|
+
"middleName": "الاسم الأوسط",
|
|
60
|
+
"no": "لا",
|
|
61
|
+
"noActiveVisitsForLocation": "There are no active visits to display for this location.",
|
|
62
|
+
"noCauseOfDeathOptions": "لا توجد خيارات لسبب الوفاة. يرجى تكوين UUID للمفهوم.",
|
|
63
|
+
"noIdentifiersConfigured": "No identifiers configured. Click Configure to add identifiers.",
|
|
64
|
+
"nonCodedCauseOfDeath": "سبب الوفاة غير المرمز",
|
|
65
|
+
"noOptions": "لا توجد خيارات متاحة",
|
|
66
|
+
"noPatientFound": "لم يتم العثور على مريض",
|
|
67
|
+
"noVisitsToDisplay": "No visits to display",
|
|
68
|
+
"optional": "اختياري",
|
|
69
|
+
"patientName": "اسم المريض",
|
|
70
|
+
"patientNameKnown": "هل اسم المريض معروف؟",
|
|
71
|
+
"patientRegistered": "تم تسجيل المريض بنجاح",
|
|
72
|
+
"phoneNumber": "رقم الهاتف",
|
|
73
|
+
"phoneNumberPlaceholder": "مثال: 0712345678",
|
|
74
|
+
"PM": "PM",
|
|
75
|
+
"recentlyViewed": "المرضى المشاهدون مؤخراً",
|
|
76
|
+
"registerAPatient": "تسجيل مريض",
|
|
77
|
+
"registerPatient": "تسجيل مريض",
|
|
78
|
+
"relationship": "العلاقة",
|
|
79
|
+
"relationshipDetails": "4. العلاقة",
|
|
80
|
+
"relationshipPersonMustExist": "يجب أن يكون الشخص ذو الصلة شخصاً موجوداً",
|
|
81
|
+
"relationshipPlaceholder": "العلاقة",
|
|
82
|
+
"relationshipRemovedText": "تمت إزالة العلاقة",
|
|
83
|
+
"relationshipToPatient": "العلاقة بالمريض",
|
|
84
|
+
"relativeFullNameLabelText": "الاسم الكامل",
|
|
85
|
+
"relativeNamePlaceholder": "الاسم الأول اسم العائلة",
|
|
86
|
+
"required": "Required",
|
|
87
|
+
"restoreRelationshipActionButton": "تراجع",
|
|
88
|
+
"scheduledForToday": "مجدول لهذا اليوم",
|
|
89
|
+
"search": "بحث",
|
|
90
|
+
"searchForPatient": "البحث عن مريض",
|
|
91
|
+
"searchResultsCount_zero": "{{count}} result(s) found",
|
|
92
|
+
"searchResultsCount_one": "تم العثور على {{count}} نتيجة (نتائج)",
|
|
93
|
+
"searchResultsCount_two": "{{count}} result(s) found",
|
|
94
|
+
"searchResultsCount_few": "{{count}} result(s) found",
|
|
95
|
+
"searchResultsCount_many": "{{count}} result(s) found",
|
|
96
|
+
"searchResultsCount_other": "تم العثور على {{count}} نتيجة (نتائج)",
|
|
97
|
+
"selectAnOption": "اختر خياراً",
|
|
98
|
+
"selectCounty": "اختر مقاطعة",
|
|
99
|
+
"selectLocation": "Select a location",
|
|
100
|
+
"selectSubCounty": "اختر مقاطعة فرعية",
|
|
101
|
+
"selectWard": "اختر جناحاً",
|
|
102
|
+
"startDate": "Start date",
|
|
103
|
+
"startTime": "Start time",
|
|
104
|
+
"startTimeFormat": "Start time format",
|
|
105
|
+
"subCounty": "المقاطعة الفرعية",
|
|
106
|
+
"submissionFailed": "فشل إرسال النموذج",
|
|
107
|
+
"submitting": "جاري الإرسال...",
|
|
108
|
+
"success": "نجاح",
|
|
109
|
+
"totalVisits": "إجمالي الزيارات اليوم",
|
|
110
|
+
"tryDifferentSearch": "حاول البحث باستخدام معرف أو اسم مختلف",
|
|
111
|
+
"unknownPatientName": "Unknown Patient",
|
|
112
|
+
"unknownPatientNameDescription": "Default names will be used for this patient: {{givenName}} {{familyName}}",
|
|
113
|
+
"validationError": "خطأ في التحقق",
|
|
114
|
+
"visitLocation": "Visit Location",
|
|
115
|
+
"visitStartAndEndDate": "Visit start and end date",
|
|
116
|
+
"visitStartDate": "Visit start date",
|
|
117
|
+
"ward": "الجناح",
|
|
118
|
+
"years": "yrs",
|
|
119
|
+
"yes": "نعم"
|
|
120
|
+
}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
{
|
|
2
|
+
"activeVisits": "Active Visits",
|
|
3
|
+
"addRelationshipButtonText": "Add Relationship",
|
|
4
|
+
"address": "Address",
|
|
5
|
+
"allFieldsRequiredText": "All fields are required unless marked optional",
|
|
6
|
+
"AM": "AM",
|
|
7
|
+
"autoGenerated": "Auto-generated",
|
|
8
|
+
"back": "Back",
|
|
9
|
+
"basicInformation": "1. Basic Information",
|
|
10
|
+
"birth": "Birth",
|
|
11
|
+
"cancel": "Cancel",
|
|
12
|
+
"causeOfDeathInputLabel": "Cause of Death",
|
|
13
|
+
"checkFilters": "Check the filters above",
|
|
14
|
+
"checkInFormTitle": "Check In form",
|
|
15
|
+
"configure": "Configure",
|
|
16
|
+
"contactDetails": "2. Contact Details",
|
|
17
|
+
"county": "County",
|
|
18
|
+
"dateOfBirthKnown": "Date of Birth Known?",
|
|
19
|
+
"dateOfBirthLabelText": "Date of birth",
|
|
20
|
+
"deathDate": "Date of Death",
|
|
21
|
+
"deathInformation": "3. Death Information",
|
|
22
|
+
"deceased": "Deceased",
|
|
23
|
+
"deleteRelationshipTooltipText": "Delete",
|
|
24
|
+
"email": "Email Address",
|
|
25
|
+
"emailPlaceholder": "joedoe@email.com",
|
|
26
|
+
"endDate": "End date",
|
|
27
|
+
"endTime": "End time",
|
|
28
|
+
"endTimeFormat": "End time format",
|
|
29
|
+
"enter": "Enter",
|
|
30
|
+
"enterIdentifierNumber": "Enter identifier number",
|
|
31
|
+
"enterIdOrScanCard": "Enter an ID number or scan the patient card",
|
|
32
|
+
"enterNonCodedCauseOfDeath": "Enter non-coded cause of death",
|
|
33
|
+
"error": "Error",
|
|
34
|
+
"errorLoadingIdentifiers": "Error loading identifiers",
|
|
35
|
+
"errorSearching": "Error searching for patients",
|
|
36
|
+
"estimatedAgeInMonthsLabelText": "Estimated age in months",
|
|
37
|
+
"estimatedAgeInYearsLabelText": "Estimated age in years",
|
|
38
|
+
"failedToLoadCauseOfDeath": "Failed to load cause of death options",
|
|
39
|
+
"failedToLoadRelationshipTypes": "Failed to load relationship types",
|
|
40
|
+
"familyName": "Family Name",
|
|
41
|
+
"filterActiveVisits": "Filter active visits",
|
|
42
|
+
"filterTable": "Filter table",
|
|
43
|
+
"firstName": "First Name",
|
|
44
|
+
"genderLabelText": "Gender",
|
|
45
|
+
"goBack": "Go back",
|
|
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": "Identifiers",
|
|
51
|
+
"incompleteRelationships": "Please complete all relationship fields",
|
|
52
|
+
"isPatientDeceased": "Is the patient deceased?",
|
|
53
|
+
"loading": "Loading...",
|
|
54
|
+
"maritalStatusLabelText": "Marital Status",
|
|
55
|
+
"middleName": "Middle Name",
|
|
56
|
+
"no": "No",
|
|
57
|
+
"noActiveVisitsForLocation": "There are no active visits to display for this location.",
|
|
58
|
+
"noCauseOfDeathOptions": "No cause of death options available. Please configure the concept UUID.",
|
|
59
|
+
"noIdentifiersConfigured": "No identifiers configured. Click Configure to add identifiers.",
|
|
60
|
+
"nonCodedCauseOfDeath": "Non-coded cause of death",
|
|
61
|
+
"noOptions": "No options available",
|
|
62
|
+
"noPatientFound": "No patient found",
|
|
63
|
+
"noVisitsToDisplay": "No visits to display",
|
|
64
|
+
"optional": "Optional",
|
|
65
|
+
"patientName": "Patient Name",
|
|
66
|
+
"patientNameKnown": "Is the patient's name known?",
|
|
67
|
+
"patientRegistered": "Patient registered successfully",
|
|
68
|
+
"phoneNumber": "Phone Number",
|
|
69
|
+
"phoneNumberPlaceholder": "e.g., 0712345678",
|
|
70
|
+
"PM": "PM",
|
|
71
|
+
"recentlyViewed": "Recently viewed patients",
|
|
72
|
+
"registerAPatient": "Register a patient",
|
|
73
|
+
"registerPatient": "Register Patient",
|
|
74
|
+
"relationship": "Relationship",
|
|
75
|
+
"relationshipDetails": "4. Relationship",
|
|
76
|
+
"relationshipPersonMustExist": "Related person must be an existing person",
|
|
77
|
+
"relationshipPlaceholder": "Relationship",
|
|
78
|
+
"relationshipRemovedText": "Relationship removed",
|
|
79
|
+
"relationshipToPatient": "Relationship to patient",
|
|
80
|
+
"relativeFullNameLabelText": "Full name",
|
|
81
|
+
"relativeNamePlaceholder": "Firstname Familyname",
|
|
82
|
+
"required": "Required",
|
|
83
|
+
"restoreRelationshipActionButton": "Undo",
|
|
84
|
+
"scheduledForToday": "Scheduled For Today",
|
|
85
|
+
"search": "Search",
|
|
86
|
+
"searchForPatient": "Search for a patient",
|
|
87
|
+
"searchResultsCount_one": "{{count}} result(s) found",
|
|
88
|
+
"searchResultsCount_other": "{{count}} result(s) found",
|
|
89
|
+
"selectAnOption": "Select an option",
|
|
90
|
+
"selectCounty": "Select a county",
|
|
91
|
+
"selectLocation": "Select a location",
|
|
92
|
+
"selectSubCounty": "Select a sub county",
|
|
93
|
+
"selectWard": "Select a ward",
|
|
94
|
+
"startDate": "Start date",
|
|
95
|
+
"startTime": "Start time",
|
|
96
|
+
"startTimeFormat": "Start time format",
|
|
97
|
+
"subCounty": "Sub county",
|
|
98
|
+
"submissionFailed": "Failed to submit form",
|
|
99
|
+
"submitting": "Submitting...",
|
|
100
|
+
"success": "Success",
|
|
101
|
+
"totalVisits": "Total Visits Today",
|
|
102
|
+
"tryDifferentSearch": "Try searching with a different identifier or name",
|
|
103
|
+
"unknownPatientName": "Unknown Patient",
|
|
104
|
+
"unknownPatientNameDescription": "Default names will be used for this patient: {{givenName}} {{familyName}}",
|
|
105
|
+
"validationError": "Validation Error",
|
|
106
|
+
"visitLocation": "Visit Location",
|
|
107
|
+
"visitStartAndEndDate": "Visit start and end date",
|
|
108
|
+
"visitStartDate": "Visit start date",
|
|
109
|
+
"ward": "Ward",
|
|
110
|
+
"years": "yrs",
|
|
111
|
+
"yes": "Yes"
|
|
112
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
{
|
|
2
|
+
"activeVisits": "Visitas Activas",
|
|
3
|
+
"addRelationshipButtonText": "Agregar Relación",
|
|
4
|
+
"address": "Dirección",
|
|
5
|
+
"allFieldsRequiredText": "Todos los campos son obligatorios a menos que se marquen como opcionales",
|
|
6
|
+
"AM": "AM",
|
|
7
|
+
"autoGenerated": "Auto-generated",
|
|
8
|
+
"back": "Atrás",
|
|
9
|
+
"basicInformation": "1. Información Básica",
|
|
10
|
+
"birth": "Nacimiento",
|
|
11
|
+
"cancel": "Cancelar",
|
|
12
|
+
"causeOfDeathInputLabel": "Causa de Muerte",
|
|
13
|
+
"checkFilters": "Check the filters above",
|
|
14
|
+
"checkInFormTitle": "Check In form",
|
|
15
|
+
"configure": "Configurar",
|
|
16
|
+
"contactDetails": "2. Datos de Contacto",
|
|
17
|
+
"county": "Condado",
|
|
18
|
+
"dateOfBirthKnown": "¿Fecha de Nacimiento Conocida?",
|
|
19
|
+
"dateOfBirthLabelText": "Fecha de nacimiento",
|
|
20
|
+
"deathDate": "Date of Death",
|
|
21
|
+
"deathInformation": "3. Información de Fallecimiento",
|
|
22
|
+
"deceased": "Deceased",
|
|
23
|
+
"deleteRelationshipTooltipText": "Eliminar",
|
|
24
|
+
"email": "Correo Electrónico",
|
|
25
|
+
"emailPlaceholder": "joedoe@email.com",
|
|
26
|
+
"endDate": "End date",
|
|
27
|
+
"endTime": "End time",
|
|
28
|
+
"endTimeFormat": "End time format",
|
|
29
|
+
"enter": "Enter",
|
|
30
|
+
"enterIdentifierNumber": "Ingrese el número de identificador",
|
|
31
|
+
"enterIdOrScanCard": "Ingrese un número de ID o escanee la tarjeta del paciente",
|
|
32
|
+
"enterNonCodedCauseOfDeath": "Ingrese causa de muerte no codificada",
|
|
33
|
+
"error": "Error",
|
|
34
|
+
"errorLoadingIdentifiers": "Error loading identifiers",
|
|
35
|
+
"errorSearching": "Error al buscar pacientes",
|
|
36
|
+
"estimatedAgeInMonthsLabelText": "Edad estimada en meses",
|
|
37
|
+
"estimatedAgeInYearsLabelText": "Edad estimada en años",
|
|
38
|
+
"failedToLoadCauseOfDeath": "Error al cargar opciones de causa de muerte",
|
|
39
|
+
"failedToLoadRelationshipTypes": "Error al cargar tipos de relación",
|
|
40
|
+
"familyName": "Apellido",
|
|
41
|
+
"filterActiveVisits": "Filter active visits",
|
|
42
|
+
"filterTable": "Filter table",
|
|
43
|
+
"firstName": "Nombre",
|
|
44
|
+
"genderLabelText": "Género",
|
|
45
|
+
"goBack": "Volver",
|
|
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 los campos de relación",
|
|
53
|
+
"isPatientDeceased": "¿El paciente ha fallecido?",
|
|
54
|
+
"loading": "Cargando...",
|
|
55
|
+
"maritalStatusLabelText": "Estado Civil",
|
|
56
|
+
"middleName": "Segundo Nombre",
|
|
57
|
+
"no": "No",
|
|
58
|
+
"noActiveVisitsForLocation": "There are no active visits to display for this location.",
|
|
59
|
+
"noCauseOfDeathOptions": "No hay opciones de causa de muerte disponibles. Por favor configure el UUID del concepto.",
|
|
60
|
+
"noIdentifiersConfigured": "No identifiers configured. Click Configure to add identifiers.",
|
|
61
|
+
"nonCodedCauseOfDeath": "Causa de muerte no codificada",
|
|
62
|
+
"noOptions": "No hay opciones disponibles",
|
|
63
|
+
"noPatientFound": "No se encontró paciente",
|
|
64
|
+
"noVisitsToDisplay": "No visits to display",
|
|
65
|
+
"optional": "Opcional",
|
|
66
|
+
"patientName": "Nombre del Paciente",
|
|
67
|
+
"patientNameKnown": "¿Se conoce el nombre del paciente?",
|
|
68
|
+
"patientRegistered": "Paciente registrado exitosamente",
|
|
69
|
+
"phoneNumber": "Número de Teléfono",
|
|
70
|
+
"phoneNumberPlaceholder": "ej., 0712345678",
|
|
71
|
+
"PM": "PM",
|
|
72
|
+
"recentlyViewed": "Pacientes vistos recientemente",
|
|
73
|
+
"registerAPatient": "Registrar un paciente",
|
|
74
|
+
"registerPatient": "Registrar Paciente",
|
|
75
|
+
"relationship": "Relación",
|
|
76
|
+
"relationshipDetails": "4. Relación",
|
|
77
|
+
"relationshipPersonMustExist": "La persona relacionada debe ser una persona existente",
|
|
78
|
+
"relationshipPlaceholder": "Relación",
|
|
79
|
+
"relationshipRemovedText": "Relación eliminada",
|
|
80
|
+
"relationshipToPatient": "Relación con el paciente",
|
|
81
|
+
"relativeFullNameLabelText": "Nombre completo",
|
|
82
|
+
"relativeNamePlaceholder": "Nombre Apellido",
|
|
83
|
+
"required": "Required",
|
|
84
|
+
"restoreRelationshipActionButton": "Deshacer",
|
|
85
|
+
"scheduledForToday": "Programado para Hoy",
|
|
86
|
+
"search": "Buscar",
|
|
87
|
+
"searchForPatient": "Buscar un 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": "Seleccione una opción",
|
|
92
|
+
"selectCounty": "Seleccione un condado",
|
|
93
|
+
"selectLocation": "Select a location",
|
|
94
|
+
"selectSubCounty": "Seleccione un subcondado",
|
|
95
|
+
"selectWard": "Seleccione una circunscripción",
|
|
96
|
+
"startDate": "Start date",
|
|
97
|
+
"startTime": "Start time",
|
|
98
|
+
"startTimeFormat": "Start time format",
|
|
99
|
+
"subCounty": "Subcondado",
|
|
100
|
+
"submissionFailed": "Error al enviar el formulario",
|
|
101
|
+
"submitting": "Enviando...",
|
|
102
|
+
"success": "Éxito",
|
|
103
|
+
"totalVisits": "Total de Visitas Hoy",
|
|
104
|
+
"tryDifferentSearch": "Intente buscar con un identificador o nombre diferente",
|
|
105
|
+
"unknownPatientName": "Unknown Patient",
|
|
106
|
+
"unknownPatientNameDescription": "Default names will be used for this patient: {{givenName}} {{familyName}}",
|
|
107
|
+
"validationError": "Error de Validación",
|
|
108
|
+
"visitLocation": "Visit Location",
|
|
109
|
+
"visitStartAndEndDate": "Visit start and end date",
|
|
110
|
+
"visitStartDate": "Visit start date",
|
|
111
|
+
"ward": "Circunscripción",
|
|
112
|
+
"years": "yrs",
|
|
113
|
+
"yes": "Sí"
|
|
114
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
{
|
|
2
|
+
"activeVisits": "Visites Actives",
|
|
3
|
+
"addRelationshipButtonText": "Ajouter une Relation",
|
|
4
|
+
"address": "Adresse",
|
|
5
|
+
"allFieldsRequiredText": "Tous les champs sont obligatoires sauf indication contraire",
|
|
6
|
+
"AM": "AM",
|
|
7
|
+
"autoGenerated": "Auto-generated",
|
|
8
|
+
"back": "Retour",
|
|
9
|
+
"basicInformation": "1. Informations de Base",
|
|
10
|
+
"birth": "Naissance",
|
|
11
|
+
"cancel": "Annuler",
|
|
12
|
+
"causeOfDeathInputLabel": "Cause du Décès",
|
|
13
|
+
"checkFilters": "Check the filters above",
|
|
14
|
+
"checkInFormTitle": "Check In form",
|
|
15
|
+
"configure": "Configurer",
|
|
16
|
+
"contactDetails": "2. Coordonnées",
|
|
17
|
+
"county": "Comté",
|
|
18
|
+
"dateOfBirthKnown": "Date de Naissance Connue?",
|
|
19
|
+
"dateOfBirthLabelText": "Date de naissance",
|
|
20
|
+
"deathDate": "Date of Death",
|
|
21
|
+
"deathInformation": "3. Informations sur le Décès",
|
|
22
|
+
"deceased": "Deceased",
|
|
23
|
+
"deleteRelationshipTooltipText": "Supprimer",
|
|
24
|
+
"email": "Adresse 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": "Saisir le numéro d'identifiant",
|
|
31
|
+
"enterIdOrScanCard": "Saisir un numéro d'identification ou scanner la carte du patient",
|
|
32
|
+
"enterNonCodedCauseOfDeath": "Saisir la cause de décès non codée",
|
|
33
|
+
"error": "Erreur",
|
|
34
|
+
"errorLoadingIdentifiers": "Error loading identifiers",
|
|
35
|
+
"errorSearching": "Erreur lors de la recherche de patients",
|
|
36
|
+
"estimatedAgeInMonthsLabelText": "Âge estimé en mois",
|
|
37
|
+
"estimatedAgeInYearsLabelText": "Âge estimé en années",
|
|
38
|
+
"failedToLoadCauseOfDeath": "Échec du chargement des options de cause de décès",
|
|
39
|
+
"failedToLoadRelationshipTypes": "Échec du chargement des types de relations",
|
|
40
|
+
"familyName": "Nom de Famille",
|
|
41
|
+
"filterActiveVisits": "Filter active visits",
|
|
42
|
+
"filterTable": "Filter table",
|
|
43
|
+
"firstName": "Prénom",
|
|
44
|
+
"genderLabelText": "Sexe",
|
|
45
|
+
"goBack": "Retour",
|
|
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": "Identifiants",
|
|
52
|
+
"incompleteRelationships": "Veuillez compléter tous les champs de relation",
|
|
53
|
+
"isPatientDeceased": "Le patient est-il décédé?",
|
|
54
|
+
"loading": "Chargement...",
|
|
55
|
+
"maritalStatusLabelText": "Statut Matrimonial",
|
|
56
|
+
"middleName": "Deuxième Prénom",
|
|
57
|
+
"no": "Non",
|
|
58
|
+
"noActiveVisitsForLocation": "There are no active visits to display for this location.",
|
|
59
|
+
"noCauseOfDeathOptions": "Aucune option de cause de décès disponible. Veuillez configurer l'UUID du concept.",
|
|
60
|
+
"noIdentifiersConfigured": "No identifiers configured. Click Configure to add identifiers.",
|
|
61
|
+
"nonCodedCauseOfDeath": "Cause de décès non codée",
|
|
62
|
+
"noOptions": "Aucune option disponible",
|
|
63
|
+
"noPatientFound": "Aucun patient trouvé",
|
|
64
|
+
"noVisitsToDisplay": "No visits to display",
|
|
65
|
+
"optional": "Optionnel",
|
|
66
|
+
"patientName": "Nom du Patient",
|
|
67
|
+
"patientNameKnown": "Le nom du patient est-il connu?",
|
|
68
|
+
"patientRegistered": "Patient enregistré avec succès",
|
|
69
|
+
"phoneNumber": "Numéro de Téléphone",
|
|
70
|
+
"phoneNumberPlaceholder": "ex., 0712345678",
|
|
71
|
+
"PM": "PM",
|
|
72
|
+
"recentlyViewed": "Patients récemment consultés",
|
|
73
|
+
"registerAPatient": "Enregistrer un patient",
|
|
74
|
+
"registerPatient": "Enregistrer le Patient",
|
|
75
|
+
"relationship": "Relation",
|
|
76
|
+
"relationshipDetails": "4. Relation",
|
|
77
|
+
"relationshipPersonMustExist": "La personne liée doit être une personne existante",
|
|
78
|
+
"relationshipPlaceholder": "Relation",
|
|
79
|
+
"relationshipRemovedText": "Relation supprimée",
|
|
80
|
+
"relationshipToPatient": "Relation avec le patient",
|
|
81
|
+
"relativeFullNameLabelText": "Nom complet",
|
|
82
|
+
"relativeNamePlaceholder": "Prénom Nom",
|
|
83
|
+
"required": "Required",
|
|
84
|
+
"restoreRelationshipActionButton": "Annuler",
|
|
85
|
+
"scheduledForToday": "Prévu pour Aujourd'hui",
|
|
86
|
+
"search": "Rechercher",
|
|
87
|
+
"searchForPatient": "Rechercher un patient",
|
|
88
|
+
"searchResultsCount_one": "{{count}} résultat(s) trouvé(s)",
|
|
89
|
+
"searchResultsCount_many": "{{count}} result(s) found",
|
|
90
|
+
"searchResultsCount_other": "{{count}} résultat(s) trouvé(s)",
|
|
91
|
+
"selectAnOption": "Sélectionner une option",
|
|
92
|
+
"selectCounty": "Sélectionner un comté",
|
|
93
|
+
"selectLocation": "Select a location",
|
|
94
|
+
"selectSubCounty": "Sélectionner un sous-comté",
|
|
95
|
+
"selectWard": "Sélectionner un quartier",
|
|
96
|
+
"startDate": "Start date",
|
|
97
|
+
"startTime": "Start time",
|
|
98
|
+
"startTimeFormat": "Start time format",
|
|
99
|
+
"subCounty": "Sous-comté",
|
|
100
|
+
"submissionFailed": "Échec de l'envoi du formulaire",
|
|
101
|
+
"submitting": "Envoi en cours...",
|
|
102
|
+
"success": "Succès",
|
|
103
|
+
"totalVisits": "Total des Visites Aujourd'hui",
|
|
104
|
+
"tryDifferentSearch": "Essayez de rechercher avec un identifiant ou un nom différent",
|
|
105
|
+
"unknownPatientName": "Unknown Patient",
|
|
106
|
+
"unknownPatientNameDescription": "Default names will be used for this patient: {{givenName}} {{familyName}}",
|
|
107
|
+
"validationError": "Erreur de Validation",
|
|
108
|
+
"visitLocation": "Visit Location",
|
|
109
|
+
"visitStartAndEndDate": "Visit start and end date",
|
|
110
|
+
"visitStartDate": "Visit start date",
|
|
111
|
+
"ward": "Quartier",
|
|
112
|
+
"years": "yrs",
|
|
113
|
+
"yes": "Oui"
|
|
114
|
+
}
|