@palladium-ethiopia/esm-admin-app 5.4.2-pre.100
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +15 -0
- package/README.md +12 -0
- package/dist/117.js +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/41.js +1 -0
- package/dist/41.js.map +1 -0
- package/dist/442.js +1 -0
- package/dist/442.js.map +1 -0
- package/dist/466.js +1 -0
- package/dist/466.js.map +1 -0
- package/dist/555.js +1 -0
- package/dist/555.js.map +1 -0
- package/dist/61.js +1 -0
- package/dist/61.js.map +1 -0
- package/dist/672.js +15 -0
- package/dist/672.js.map +1 -0
- package/dist/689.js +1 -0
- package/dist/689.js.map +1 -0
- package/dist/710.js +1 -0
- package/dist/710.js.map +1 -0
- package/dist/712.js +1 -0
- package/dist/712.js.map +1 -0
- package/dist/771.js +1 -0
- package/dist/771.js.map +1 -0
- package/dist/789.js +1 -0
- package/dist/789.js.map +1 -0
- package/dist/806.js +1 -0
- package/dist/826.js +1 -0
- package/dist/826.js.map +1 -0
- package/dist/914.js +27 -0
- package/dist/914.js.map +1 -0
- package/dist/926.js +17 -0
- package/dist/926.js.map +1 -0
- package/dist/ethiopia-esm-admin-app.js +6 -0
- package/dist/ethiopia-esm-admin-app.js.buildmanifest.json +556 -0
- package/dist/ethiopia-esm-admin-app.js.map +1 -0
- package/dist/main.js +32 -0
- package/dist/main.js.map +1 -0
- package/dist/routes.json +1 -0
- package/jest.config.js +8 -0
- package/package.json +52 -0
- package/rspack.config.js +1 -0
- package/src/components/confirm-modal/confirmation-operation-modal.component.tsx +43 -0
- package/src/components/confirm-modal/confirmation-operation.test.tsx +69 -0
- package/src/components/dashboard/dashboard.component.tsx +131 -0
- package/src/components/dashboard/dashboard.scss +38 -0
- package/src/components/dashboard/etl-dashboard.component.tsx +11 -0
- package/src/components/empty-state/empty-state-log.components.tsx +20 -0
- package/src/components/empty-state/empty-state-log.scss +28 -0
- package/src/components/empty-state/empty-state-log.test.tsx +24 -0
- package/src/components/facility-setup/card.component.tsx +16 -0
- package/src/components/facility-setup/facility-info.component.tsx +142 -0
- package/src/components/facility-setup/facility-info.scss +87 -0
- package/src/components/facility-setup/facility-setup.component.tsx +21 -0
- package/src/components/facility-setup/facility-setup.resource.tsx +7 -0
- package/src/components/facility-setup/facility-setup.scss +38 -0
- package/src/components/facility-setup/header/header.component.tsx +23 -0
- package/src/components/facility-setup/header/header.scss +19 -0
- package/src/components/header/header-illustration.component.tsx +13 -0
- package/src/components/header/header.component.tsx +28 -0
- package/src/components/header/header.scss +19 -0
- package/src/components/hook/healthWorkerAdapter.ts +213 -0
- package/src/components/hook/useFacilityInfo.tsx +37 -0
- package/src/components/hook/useSystemRoleSetting.tsx +33 -0
- package/src/components/locations/auto-suggest/autosuggest.component.tsx +149 -0
- package/src/components/locations/auto-suggest/autosuggest.scss +61 -0
- package/src/components/locations/auto-suggest/location-autosuggest.component.tsx +94 -0
- package/src/components/locations/auto-suggest/location-autosuggest.scss +48 -0
- package/src/components/locations/common/results-tile.component.tsx +45 -0
- package/src/components/locations/common/results-tile.scss +86 -0
- package/src/components/locations/forms/add-location/add-location.workspace.scss +34 -0
- package/src/components/locations/forms/add-location/add-location.workspace.tsx +200 -0
- package/src/components/locations/forms/search-location/search-location.workspace.scss +79 -0
- package/src/components/locations/forms/search-location/search-location.workspace.tsx +215 -0
- package/src/components/locations/header/header.component.tsx +48 -0
- package/src/components/locations/header/header.scss +58 -0
- package/src/components/locations/helpers/index.ts +16 -0
- package/src/components/locations/home/home-locations.component.tsx +18 -0
- package/src/components/locations/home/home-locations.scss +8 -0
- package/src/components/locations/hooks/UseFacilityLocations.ts +12 -0
- package/src/components/locations/hooks/useLocation.ts +18 -0
- package/src/components/locations/hooks/useLocationTags.ts +15 -0
- package/src/components/locations/tables/locations-table.component.tsx +243 -0
- package/src/components/locations/tables/locations-table.resource.ts +26 -0
- package/src/components/locations/tables/locations-table.scss +115 -0
- package/src/components/locations/types/index.ts +120 -0
- package/src/components/locations/utils/index.ts +5 -0
- package/src/components/logs-table/operation-log-resource.ts +41 -0
- package/src/components/logs-table/operation-log-table.component.tsx +120 -0
- package/src/components/logs-table/operation-log.scss +10 -0
- package/src/components/logs-table/operation-log.test.tsx +47 -0
- package/src/components/modal/hwr-confirmation.modal.scss +21 -0
- package/src/components/modal/hwr-confirmation.modal.tsx +170 -0
- package/src/components/modal/hwr-empty.modal.component.tsx +54 -0
- package/src/components/modal/hwr-sync.modal.scss +30 -0
- package/src/components/modal/hwr-sync.modal.tsx +209 -0
- package/src/components/modal/hwr-sync.resource.ts +23 -0
- package/src/components/provider-banner/provider-banner.component.tsx +106 -0
- package/src/components/provider-banner/provider-banner.module.scss +51 -0
- package/src/components/provider-banner/provider-banner.resource.ts +29 -0
- package/src/components/side-menu/left-panel.scss +42 -0
- package/src/components/side-menu/left-pannel.component.tsx +22 -0
- package/src/components/users/header/header.scss +90 -0
- package/src/components/users/header/user-management-header.component.tsx +42 -0
- package/src/components/users/manage-users/hooks/useProviderAttributeMapping.ts +110 -0
- package/src/components/users/manage-users/hooks/useUserFormSteps.ts +119 -0
- package/src/components/users/manage-users/hooks/useUserFormSubmission.ts +264 -0
- package/src/components/users/manage-users/hooks/useUserManagementForm.ts +122 -0
- package/src/components/users/manage-users/manage-user-role-scope/user-role-scope-list/user-role-scope-list.component.tsx +177 -0
- package/src/components/users/manage-users/manage-user-role-scope/user-role-scope-workspace/user-role-fields.scss +117 -0
- package/src/components/users/manage-users/manage-user-role-scope/user-role-scope-workspace/user-role-scope-fields.component.tsx +290 -0
- package/src/components/users/manage-users/manage-user-role-scope/user-role-scope-workspace/user-role-scope.workspace.tsx +316 -0
- package/src/components/users/manage-users/manage-user-role-scope/user-role-scope-workspace/userRoleScopeFormSchema.tsx +43 -0
- package/src/components/users/manage-users/manage-user.component.tsx +19 -0
- package/src/components/users/manage-users/manage-user.scss +31 -0
- package/src/components/users/manage-users/provider-autosuggest.component.tsx +117 -0
- package/src/components/users/manage-users/provider-search.resource.ts +34 -0
- package/src/components/users/manage-users/sections/demographic-section.component.tsx +156 -0
- package/src/components/users/manage-users/sections/login-section.component.tsx +88 -0
- package/src/components/users/manage-users/sections/provider-section.component.tsx +270 -0
- package/src/components/users/manage-users/sections/roles-section.component.tsx +88 -0
- package/src/components/users/manage-users/user-details/user-detail.scss +75 -0
- package/src/components/users/manage-users/user-details/user-details.component.tsx +182 -0
- package/src/components/users/manage-users/user-list/user-list.component.tsx +378 -0
- package/src/components/users/manage-users/user-list/user-list.resource.ts +30 -0
- package/src/components/users/manage-users/user-list/user-list.scss +37 -0
- package/src/components/users/manage-users/user-management.constants.ts +20 -0
- package/src/components/users/manage-users/user-management.utils.ts +100 -0
- package/src/components/users/manage-users/user-management.workspace.scss +172 -0
- package/src/components/users/manage-users/user-management.workspace.tsx +334 -0
- package/src/components/users/userManagementFormSchema.tsx +179 -0
- package/src/config-schema.ts +142 -0
- package/src/constants.ts +50 -0
- package/src/declarations.d.ts +2 -0
- package/src/index.ts +55 -0
- package/src/left-pannel-link.component.tsx +40 -0
- package/src/root.component.tsx +39 -0
- package/src/root.scss +12 -0
- package/src/routes.json +100 -0
- package/src/setup-tests.ts +1 -0
- package/src/types/index.ts +385 -0
- package/src/user-management.resources.ts +232 -0
- package/src/utils/utils.ts +20 -0
- package/translations/am.json +159 -0
- package/translations/en.json +159 -0
- package/tsconfig.json +5 -0
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": "እርምጃዎች",
|
|
3
|
+
"active": "ገባሪ",
|
|
4
|
+
"Active Licensed": "ገባሪ ፈቃድ ያለው",
|
|
5
|
+
"activeFrom": "ከዚህ ቀን ጀምሮ ገባሪ",
|
|
6
|
+
"activeTo": "እስከዚህ ቀን ገባሪ",
|
|
7
|
+
"addLocation": "ቦታ ያክሉ",
|
|
8
|
+
"addUser": "ተጠቃሚ ያክሉ",
|
|
9
|
+
"adminLeftPannel": "አስተዳዳሪ ግራ ፓነል",
|
|
10
|
+
"All users": "ሁሉም ተጠቃሚዎች",
|
|
11
|
+
"cancel": "ይቅር",
|
|
12
|
+
"checkFilters": "ከላይ ያሉትን ማጣሪያዎች ያረጋግጡ",
|
|
13
|
+
"chooseAStockRole": "የክምችት ሚና ይምረጡ",
|
|
14
|
+
"completionStatus": "የማጠናቀቂያ ሁኔታ",
|
|
15
|
+
"confirmation": "ማረጋገጫ",
|
|
16
|
+
"confirmPassword": "Confirm Password",
|
|
17
|
+
"continue": "ወደ ምዝገባ ይቀጥሉ",
|
|
18
|
+
"delete": "ሰርዝ",
|
|
19
|
+
"deletingstockUserScope": "የክምችት ተጠቃሚ ስፋትን ሰርዝ",
|
|
20
|
+
"demographicInfo": "Demographic info",
|
|
21
|
+
"description": "መግለጫ",
|
|
22
|
+
"edit": "አስተካክል",
|
|
23
|
+
"editProvider": "Edit Provider Details",
|
|
24
|
+
"EditProviderDetails": "Edit provider details?",
|
|
25
|
+
"editUser": "ተጠቃሚን አስተካክል",
|
|
26
|
+
"email": "Enter Email",
|
|
27
|
+
"emailAddress": "ኢሜይል አድራሻ",
|
|
28
|
+
"enable": "አንቃ?",
|
|
29
|
+
"enabled": "ነቅቷል",
|
|
30
|
+
"endTime": "የማብቂያ ሰዓት",
|
|
31
|
+
"errorDeletingUserScope": "የተጠቃሚ ስፋት ስህተት ተሰርዟል",
|
|
32
|
+
"etlAdministration": "ETL አስተዳደር",
|
|
33
|
+
"etlOperation": "ETL ክንውኖች",
|
|
34
|
+
"etlsOperationsLoading": "እባክዎ ይጠብቁ {{currentOperation}} በመካሄድ ላይ ነው...",
|
|
35
|
+
"Expired Licensed": "ያለፈበት ፈቃድ ያለው",
|
|
36
|
+
"expiresIn3Months": "በ3 ወራት ውስጥ ያልቃል",
|
|
37
|
+
"expiresSoon": "በቅርቡ ያልቃል",
|
|
38
|
+
"externalId": "External ID",
|
|
39
|
+
"facilityCode": "የተቋሙ KMHFR ኮድ",
|
|
40
|
+
"facilityDetails": "የተቋሙ ዝርዝሮች",
|
|
41
|
+
"facilityInfo": "የተቋሙ መረጃ",
|
|
42
|
+
"facilityInformation": "የተቋሙ መረጃ",
|
|
43
|
+
"facilityName": "የተቋሙ ስም",
|
|
44
|
+
"facilityRegistryCode": "የተቋሙ መመዝገቢያ ኮድ",
|
|
45
|
+
"familyName": "Family Name",
|
|
46
|
+
"female": "Female",
|
|
47
|
+
"filter": "አጣራ",
|
|
48
|
+
"filterBy": "በዚህ አጣራ:",
|
|
49
|
+
"generalInformation": "አጠቃላይ መረጃ",
|
|
50
|
+
"givenName": "Given Name",
|
|
51
|
+
"HealthworkerNotFound": "የጤና ሰራተኛ መዝገቦች በጤና ሰራተኛ መመዝገቢያ ውስጥ ሊገኙ አልቻሉም፣ አካውንት መፍጠር መቀጠል ይፈልጋሉ",
|
|
52
|
+
"healthWorkerRegistryEmpty": "አካውንት ይፍጠሩ",
|
|
53
|
+
"hieSynchronizationError": "ከHIE ጋር ሲመሳሰል ስህተት ተፈጥሯል",
|
|
54
|
+
"home": "መነሻ",
|
|
55
|
+
"identifierProvider": "መለያ:",
|
|
56
|
+
"ihrisIdentifier": "IHRIS Identifier",
|
|
57
|
+
"kephLevel": "የ Keph ደረጃ",
|
|
58
|
+
"Licensed expiring soon": "በቅርቡ የሚያልፍ ፈቃድ ያለው",
|
|
59
|
+
"licenseExpired": "ፈቃድ ጊዜው አልፏል",
|
|
60
|
+
"licenseExpiringSoon": "ፈቃድ በቅርቡ ያልቃል",
|
|
61
|
+
"licenseExpiryDate": "የፈቃድ ማብቂያ ቀን",
|
|
62
|
+
"licenseNumber": "የፈቃድ ቁጥር",
|
|
63
|
+
"licenseProvider": "ፈቃድ:",
|
|
64
|
+
"loading": "",
|
|
65
|
+
"loadingState": "",
|
|
66
|
+
"location": "ቦታ(ዎች)",
|
|
67
|
+
"locationName": "የቦታ ስም",
|
|
68
|
+
"locations": "ቦታዎች",
|
|
69
|
+
"loginInfo": "Login Info",
|
|
70
|
+
"male": "Male",
|
|
71
|
+
"middleName": "Middle Name",
|
|
72
|
+
"nameProvider": "ስም:",
|
|
73
|
+
"names": "ስሞች",
|
|
74
|
+
"nationalId": "ብሔራዊ መታወቂያ",
|
|
75
|
+
"nationalID": "National id",
|
|
76
|
+
"nextPage": "ቀጣይ ገጽ",
|
|
77
|
+
"no": "አይ",
|
|
78
|
+
"noData": "የሚታይ መረጃ የለም",
|
|
79
|
+
"noDescriptionAvailable": "ምንም መግለጫ አይገኝም",
|
|
80
|
+
"noHwrApi": "የጤና እንክብካቤ ሰራተኛ መመዝገቢያ API መረጃዎች አልተዋቀሩም፣ እባክዎ የስርዓት አስተዳዳሪን ያግኙ። አካውንት መፍጠር መቀጠል ይፈልጋሉ",
|
|
81
|
+
"noMatchingUsers": "ተዛማጅ ተጠቃሚዎች አልተገኙም",
|
|
82
|
+
"noRecordsFound": "ምንም የETL ክንውን ምዝግብ ማስታወሻዎች አልተገኙም",
|
|
83
|
+
"noRespond": "አይ",
|
|
84
|
+
"noSearchResults": "",
|
|
85
|
+
"noUserRoleScope": "ምንም የተጠቃሚ ሚና ስፋት የለም",
|
|
86
|
+
"noUsersAvailable": "ምንም ተጠቃሚዎች አይገኙም",
|
|
87
|
+
"operationError": "{{operationName}} አልተሳካም",
|
|
88
|
+
"operationErrorSubtitle": "በክንውኑ ጊዜ ስህተት ተፈጥሯል።",
|
|
89
|
+
"operationsConfirmationMessages": "{{operationTypeOrName}} ይፈልጋሉ?",
|
|
90
|
+
"operationSuccess": "{{operationName}} በተሳካ ሁኔታ {{operationType}}",
|
|
91
|
+
"operationSuccessSubtitle": "ክንውኑ በተሳካ ሁኔታ ተጠናቋል።",
|
|
92
|
+
"passportNumber": "ፓስፖርት ቁጥር",
|
|
93
|
+
"password": "Password",
|
|
94
|
+
"permanent": "ቋሚ?",
|
|
95
|
+
"phoneNumber": "ስልክ ቁጥር",
|
|
96
|
+
"previousPage": "የቀድሞ ገጽ",
|
|
97
|
+
"procedure": "ሥነ-ሥርዓት",
|
|
98
|
+
"providerBanner": "የአቅራቢ ባነር",
|
|
99
|
+
"providerDetails": "Provider details",
|
|
100
|
+
"providerId": "Provider Id",
|
|
101
|
+
"providerIdentifiers": "Create a Provider account for this user",
|
|
102
|
+
"providerLicense": "License Number",
|
|
103
|
+
"providerNotFound": "No matching provider found",
|
|
104
|
+
"providerUniqueIdentifier": "የአቅራቢ ልዩ መለያ",
|
|
105
|
+
"providerUniqueIdentifierPlaceholder": "Enter Provider Unqiue Identifier",
|
|
106
|
+
"qualification": "Qualification",
|
|
107
|
+
"recreated": "በድጋሚ ተፈጥሯል",
|
|
108
|
+
"recreateDatatools": "የውሂብ መሳሪያዎችን በድጋሚ ፍጠር",
|
|
109
|
+
"recreateFacilityWideTables": "የተቋም-ሰፊ ሰንጠረዦችን በድጋሚ ፍጠር",
|
|
110
|
+
"recreateTables": "ሰንጠረዦችን በድጋሚ ፍጠር",
|
|
111
|
+
"refreshDwapi": "የ DWAPI ሰንጠረዦችን አድስ",
|
|
112
|
+
"refreshed": "ታድሷል",
|
|
113
|
+
"refreshingUserScopes": "የተጠቃሚ ስፋቶችን በማደስ ላይ...",
|
|
114
|
+
"refreshTables": "ሰንጠረዦችን አድስ",
|
|
115
|
+
"registrationNumber": "የምዝገባ ቁጥር",
|
|
116
|
+
"remove": "አስወግድ",
|
|
117
|
+
"reset": "ዳግም አስጀምር",
|
|
118
|
+
"ResourceNotFound": "የጤና ሰራተኛ መመዝገቢያ ሊደረስበት አልቻለም፣ እባክዎ የበይነመረብ ግንኙነትዎን ያረጋግጡ እና እንደገና ይሞክሩ። አካውንት መፍጠር መቀጠል ይፈልጋሉ",
|
|
119
|
+
"role": "ሚና",
|
|
120
|
+
"rolesInfo": "Roles Info",
|
|
121
|
+
"search": "ቦታ ፈልግ",
|
|
122
|
+
"searchForProvider": "Search for existing provider",
|
|
123
|
+
"searchForUsers": "ተጠቃሚ ፈልግ",
|
|
124
|
+
"searchNoResults": "ምንም ተዛማጅ ውጤቶች አልተገኙም",
|
|
125
|
+
"searchNoResultsHelper": "የተለየ ቃል ለመፈለግ ይሞክሩ",
|
|
126
|
+
"searchProviderPlaceholder": "Search by provider name",
|
|
127
|
+
"sex": "Sex",
|
|
128
|
+
"shaContracted": "SHA ተዋውሏል",
|
|
129
|
+
"shaContractExpiry": "የ SHA ውል ማብቂያ ቀን",
|
|
130
|
+
"shalicenceNumber": "የ SHA ፈቃድ ቁጥር",
|
|
131
|
+
"shaStatus": "የ SHA ሁኔታ",
|
|
132
|
+
"startTime": "የመጀመሪያ ሰዓት",
|
|
133
|
+
"stockLocation": "የክምችት ቦታ",
|
|
134
|
+
"stockOperation": "የክምችት ክንውን",
|
|
135
|
+
"stockRole": "የክምችት ሚና",
|
|
136
|
+
"stockRoleAccess": "የክምችት ሚና መዳረሻ",
|
|
137
|
+
"stockUserScopeDeletedSuccessfully": "የክምችት ተጠቃሚ ስፋት በተሳካ ሁኔታ ተሰርዟል",
|
|
138
|
+
"synchronizeWithHie": "ከ HIE ጋር አመሳክር",
|
|
139
|
+
"synchronizingFacilityData": "እባክዎ ይጠብቁ፣ መረጃ በመመሳሰል ላይ ነው።",
|
|
140
|
+
"syncingHieError": "ከHIE ጋር ማመሳሰል አልተሳካም",
|
|
141
|
+
"syncingHieSuccess": "ማመሳሰል ተጠናቋል",
|
|
142
|
+
"systemId": "የስርዓት መታወቂያ",
|
|
143
|
+
"tagLocation": "ቦታን ምልክት አድርግ",
|
|
144
|
+
"tags": "መለያዎች",
|
|
145
|
+
"tryDifferentSearch": "የተለየ የፍለጋ ቃል ይሞክሩ",
|
|
146
|
+
"unknownError": "የጤና ሰራተኛ መመዝገቢያን በሚፈልጉበት ጊዜ ያልታወቀ ስህተት ተከስቷል፣ እባክዎ የስርዓት አስተዳዳሪን ያግኙ። አካውንት መፍጠር መቀጠል ይፈልጋሉ",
|
|
147
|
+
"unlicensed": "ፈቃድ የሌለው",
|
|
148
|
+
"Unlicensed": "ፈቃድ የሌለው",
|
|
149
|
+
"userGivenName": "Enter Given Name",
|
|
150
|
+
"userManagement": "የተጠቃሚ አስተዳደር",
|
|
151
|
+
"username": "Username",
|
|
152
|
+
"userRoleScope": "የተጠቃሚ ሚና ስፋት",
|
|
153
|
+
"users": "ተጠቃሚዎች",
|
|
154
|
+
"usersManagement": "የተጠቃሚዎች አስተዳደር",
|
|
155
|
+
"validLicense": "ትክክለኛ ፈቃድ",
|
|
156
|
+
"viewRoles": "ሚናዎችን ይመልከቱ",
|
|
157
|
+
"yes": "አዎ",
|
|
158
|
+
"yesRespond": "አዎ"
|
|
159
|
+
}
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
{
|
|
2
|
+
"actions": "Actions",
|
|
3
|
+
"active": "Active",
|
|
4
|
+
"Active Licensed": "Active Licensed",
|
|
5
|
+
"activeFrom": "Active From",
|
|
6
|
+
"activeTo": "Active To",
|
|
7
|
+
"addLocation": "Add Location",
|
|
8
|
+
"addUser": "Add User",
|
|
9
|
+
"adminLeftPannel": "Admin left panel",
|
|
10
|
+
"All users": "All users",
|
|
11
|
+
"cancel": "Cancel",
|
|
12
|
+
"checkFilters": "Check the filters above",
|
|
13
|
+
"chooseAStockRole": "Choose a stock role",
|
|
14
|
+
"completionStatus": "Completion status",
|
|
15
|
+
"confirmation": "Confirmation",
|
|
16
|
+
"confirmPassword": "Confirm Password",
|
|
17
|
+
"continue": "Continue to registration",
|
|
18
|
+
"delete": "Delete",
|
|
19
|
+
"deletingstockUserScope": "Delete Stock User Scope",
|
|
20
|
+
"demographicInfo": "Demographic info",
|
|
21
|
+
"description": "Description",
|
|
22
|
+
"edit": "Edit",
|
|
23
|
+
"editProvider": "Edit Provider Details",
|
|
24
|
+
"EditProviderDetails": "Edit provider details?",
|
|
25
|
+
"editUser": "Edit user",
|
|
26
|
+
"email": "Enter Email",
|
|
27
|
+
"emailAddress": "Email address",
|
|
28
|
+
"enable": "Enable?",
|
|
29
|
+
"enabled": "Enabled",
|
|
30
|
+
"endTime": "End time",
|
|
31
|
+
"errorDeletingUserScope": "Error deleting a user scope",
|
|
32
|
+
"etlAdministration": "ETL Administration",
|
|
33
|
+
"etlOperation": "ETL operations",
|
|
34
|
+
"etlsOperationsLoading": "Please wait {{currentOperation}} is in progress...",
|
|
35
|
+
"Expired Licensed": "Expired Licensed",
|
|
36
|
+
"expiresIn3Months": "Expires in 3 months",
|
|
37
|
+
"expiresSoon": "Expires Soon",
|
|
38
|
+
"externalId": "External ID",
|
|
39
|
+
"facilityCode": "Facility KMHFR Code",
|
|
40
|
+
"facilityDetails": "Facility Details",
|
|
41
|
+
"facilityInfo": "Facility Info",
|
|
42
|
+
"facilityInformation": "Facility Information",
|
|
43
|
+
"facilityName": "Facility Name",
|
|
44
|
+
"facilityRegistryCode": "Facility Registry Code",
|
|
45
|
+
"familyName": "Family Name",
|
|
46
|
+
"female": "Female",
|
|
47
|
+
"filter": "Filter",
|
|
48
|
+
"filterBy": "Filter by:",
|
|
49
|
+
"generalInformation": "General Information",
|
|
50
|
+
"givenName": "Given Name",
|
|
51
|
+
"HealthworkerNotFound": "The health worker records could not be found in Health Worker registry, do you want to continue to create an account",
|
|
52
|
+
"healthWorkerRegistryEmpty": "Create an Account",
|
|
53
|
+
"hieSynchronizationError": "An error occurred while synchronizing with HIE",
|
|
54
|
+
"home": "Home",
|
|
55
|
+
"identifierProvider": "Identifier:",
|
|
56
|
+
"ihrisIdentifier": "IHRIS Identifier",
|
|
57
|
+
"kephLevel": "Keph Level",
|
|
58
|
+
"Licensed expiring soon": "Licensed expiring soon",
|
|
59
|
+
"licenseExpired": "License has expired",
|
|
60
|
+
"licenseExpiringSoon": "License is expiring soon",
|
|
61
|
+
"licenseExpiryDate": "License Expiry Date",
|
|
62
|
+
"licenseNumber": "License Number",
|
|
63
|
+
"licenseProvider": "License:",
|
|
64
|
+
"loading": "",
|
|
65
|
+
"loadingState": "",
|
|
66
|
+
"location": "Location(s)",
|
|
67
|
+
"locationName": "Location Name",
|
|
68
|
+
"locations": "Locations",
|
|
69
|
+
"loginInfo": "Login Info",
|
|
70
|
+
"male": "Male",
|
|
71
|
+
"middleName": "Middle Name",
|
|
72
|
+
"nameProvider": "Name:",
|
|
73
|
+
"names": "Names",
|
|
74
|
+
"nationalId": "National ID",
|
|
75
|
+
"nationalID": "National id",
|
|
76
|
+
"nextPage": "Next page",
|
|
77
|
+
"no": "No",
|
|
78
|
+
"noData": "No data to display",
|
|
79
|
+
"noDescriptionAvailable": "No description available",
|
|
80
|
+
"noHwrApi": "Health Care Worker Registry API credentials not configured, Kindly contact system admin. Do you want to continue to create an account",
|
|
81
|
+
"noMatchingUsers": "No matching users found",
|
|
82
|
+
"noRecordsFound": "No ETL Operation logs found",
|
|
83
|
+
"noRespond": "No",
|
|
84
|
+
"noSearchResults": "",
|
|
85
|
+
"noUserRoleScope": "No user role scope",
|
|
86
|
+
"noUsersAvailable": "No users available",
|
|
87
|
+
"operationError": "{{operationName}} failed",
|
|
88
|
+
"operationErrorSubtitle": "An error occurred during the operation.",
|
|
89
|
+
"operationsConfirmationMessages": "Do you want to {{operationTypeOrName}}?",
|
|
90
|
+
"operationSuccess": "{{operationName}} successfully {{operationType}}",
|
|
91
|
+
"operationSuccessSubtitle": "The operation completed successfully.",
|
|
92
|
+
"passportNumber": "Passport number",
|
|
93
|
+
"password": "Password",
|
|
94
|
+
"permanent": "Permanent?",
|
|
95
|
+
"phoneNumber": "Phone number",
|
|
96
|
+
"previousPage": "Previous page",
|
|
97
|
+
"procedure": "Procedure",
|
|
98
|
+
"providerBanner": "Provider banner",
|
|
99
|
+
"providerDetails": "Provider details",
|
|
100
|
+
"providerId": "Provider Id",
|
|
101
|
+
"providerIdentifiers": "Create a Provider account for this user",
|
|
102
|
+
"providerLicense": "License Number",
|
|
103
|
+
"providerNotFound": "No matching provider found",
|
|
104
|
+
"providerUniqueIdentifier": "Provider Unique Identifier",
|
|
105
|
+
"providerUniqueIdentifierPlaceholder": "Enter Provider Unqiue Identifier",
|
|
106
|
+
"qualification": "Qualification",
|
|
107
|
+
"recreated": "recreated",
|
|
108
|
+
"recreateDatatools": "Recreate datatools",
|
|
109
|
+
"recreateFacilityWideTables": "Recreate facility wide tables",
|
|
110
|
+
"recreateTables": "Recreate tables",
|
|
111
|
+
"refreshDwapi": "Refresh DWAPI tables",
|
|
112
|
+
"refreshed": "refreshed",
|
|
113
|
+
"refreshingUserScopes": "Refreshing user scopes...",
|
|
114
|
+
"refreshTables": "Refresh tables",
|
|
115
|
+
"registrationNumber": "Registration number",
|
|
116
|
+
"remove": "Remove",
|
|
117
|
+
"reset": "Reset",
|
|
118
|
+
"ResourceNotFound": "The Health Work Registry is not reachable, kindly confirm your internet connectivity and try again. Do you want to continue to create an account",
|
|
119
|
+
"role": "Role",
|
|
120
|
+
"rolesInfo": "Roles Info",
|
|
121
|
+
"search": "Search location",
|
|
122
|
+
"searchForProvider": "Search for existing provider",
|
|
123
|
+
"searchForUsers": "Search for user",
|
|
124
|
+
"searchNoResults": "Found no matching results",
|
|
125
|
+
"searchNoResultsHelper": "Try searching for a different term",
|
|
126
|
+
"searchProviderPlaceholder": "Search by provider name",
|
|
127
|
+
"sex": "Sex",
|
|
128
|
+
"shaContracted": "SHA Contracted",
|
|
129
|
+
"shaContractExpiry": "SHA Contract Expiry Date",
|
|
130
|
+
"shalicenceNumber": "SHA License Number",
|
|
131
|
+
"shaStatus": "SHA Status",
|
|
132
|
+
"startTime": "Start time",
|
|
133
|
+
"stockLocation": "Stock Location",
|
|
134
|
+
"stockOperation": "Stock Operation",
|
|
135
|
+
"stockRole": "Stock Role",
|
|
136
|
+
"stockRoleAccess": "Stock Role Access",
|
|
137
|
+
"stockUserScopeDeletedSuccessfully": "Stock User Scope Deleted Successfully",
|
|
138
|
+
"synchronizeWithHie": "Synchronize with HIE",
|
|
139
|
+
"synchronizingFacilityData": "Please wait, Synchronizing Info.",
|
|
140
|
+
"syncingHieError": "Syncing with HIE Failed",
|
|
141
|
+
"syncingHieSuccess": "Synchronization Complete",
|
|
142
|
+
"systemId": "System ID",
|
|
143
|
+
"tagLocation": "Tag Location",
|
|
144
|
+
"tags": "Tags",
|
|
145
|
+
"tryDifferentSearch": "Try a different search term",
|
|
146
|
+
"unknownError": "An error occurred while searching Health Worker Registry, kindly contact system admin. Do you want to continue to create an account",
|
|
147
|
+
"unlicensed": "Unlicensed",
|
|
148
|
+
"Unlicensed": "Unlicensed",
|
|
149
|
+
"userGivenName": "Enter Given Name",
|
|
150
|
+
"userManagement": "User Management",
|
|
151
|
+
"username": "Username",
|
|
152
|
+
"userRoleScope": "User Role Scope",
|
|
153
|
+
"users": "Users",
|
|
154
|
+
"usersManagement": "Users management",
|
|
155
|
+
"validLicense": "Valid License",
|
|
156
|
+
"viewRoles": "View roles",
|
|
157
|
+
"yes": "Yes",
|
|
158
|
+
"yesRespond": "Yes"
|
|
159
|
+
}
|