@kenyaemr/esm-admin-app 5.4.4-pre.145 → 5.4.4-pre.15

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.
Files changed (279) hide show
  1. package/package.json +1 -1
  2. package/src/components/confirm-modal/confirmation-operation.test.tsx +8 -19
  3. package/src/components/dashboard/dashboard.component.tsx +4 -1
  4. package/src/components/empty-state/empty-state-log.test.tsx +3 -4
  5. package/src/components/facility-setup/constant/index.ts +3 -0
  6. package/src/components/facility-setup/facility-info.component.tsx +176 -106
  7. package/src/components/facility-setup/facility-info.scss +39 -1
  8. package/src/components/facility-setup/facility-setup.component.tsx +2 -2
  9. package/src/components/facility-setup/type/index.ts +61 -0
  10. package/src/components/facility-setup/useFacilityRegistry.ts +29 -0
  11. package/src/components/global-property/dashboard/global-property-dashboard.component.tsx +23 -0
  12. package/src/components/global-property/dashboard/global-property-dashboard.scss +6 -0
  13. package/src/components/global-property/hooks/useGlobalProperty.ts +64 -0
  14. package/src/components/global-property/index.ts +14 -0
  15. package/src/components/global-property/modal/delete-global-property-modal.component.tsx +71 -0
  16. package/src/components/global-property/modal/delete-global-property-modal.test.tsx +131 -0
  17. package/src/components/global-property/table/global-property-table.component.tsx +249 -0
  18. package/src/components/global-property/table/global-property-table.scss +34 -0
  19. package/src/components/global-property/table/global-property-table.test.tsx +198 -0
  20. package/src/components/global-property/workspace/global-property-form-schema.ts +32 -0
  21. package/src/components/global-property/workspace/global-property.workspace.scss +40 -0
  22. package/src/components/global-property/workspace/global-property.workspace.test.tsx +172 -0
  23. package/src/components/global-property/workspace/global-property.workspace.tsx +260 -0
  24. package/src/components/hook/healthWorkerRegistry.ts +78 -0
  25. package/src/components/hook/useProfessionalRegistryEnums.ts +59 -0
  26. package/src/components/logs-table/operation-log-table.component.tsx +87 -75
  27. package/src/components/logs-table/operation-log.test.tsx +134 -28
  28. package/src/components/modal/hwr-confirmation.modal.scss +80 -4
  29. package/src/components/modal/hwr-confirmation.modal.tsx +118 -128
  30. package/src/components/modal/hwr-sync.modal.tsx +194 -106
  31. package/src/components/users/manage-users/user-details/user-detail.scss +167 -39
  32. package/src/components/users/manage-users/user-details/user-details.component.tsx +130 -122
  33. package/src/components/users/manage-users/user-management.workspace.scss +233 -95
  34. package/src/components/users/manage-users/user-management.workspace.tsx +481 -375
  35. package/src/components/users/userManagementFormSchema.tsx +17 -8
  36. package/src/config-schema.ts +48 -68
  37. package/src/index.ts +9 -1
  38. package/src/root.component.tsx +2 -0
  39. package/src/routes.json +20 -1
  40. package/src/types/index.ts +11 -2
  41. package/translations/am.json +175 -10
  42. package/translations/en.json +108 -40
  43. package/translations/fr.json +171 -101
  44. package/translations/sw.json +312 -147
  45. package/.turbo/turbo-build.log +0 -6
  46. package/dist/1074.js +0 -1
  47. package/dist/1074.js.map +0 -1
  48. package/dist/12.js +0 -17
  49. package/dist/12.js.map +0 -1
  50. package/dist/1201.js +0 -1
  51. package/dist/1201.js.map +0 -1
  52. package/dist/1242.js +0 -1
  53. package/dist/1242.js.map +0 -1
  54. package/dist/1311.js +0 -1
  55. package/dist/1311.js.map +0 -1
  56. package/dist/1462.js +0 -1
  57. package/dist/1462.js.map +0 -1
  58. package/dist/1469.js +0 -1
  59. package/dist/1469.js.map +0 -1
  60. package/dist/1506.js +0 -13
  61. package/dist/1506.js.map +0 -1
  62. package/dist/1718.js +0 -1
  63. package/dist/1718.js.map +0 -1
  64. package/dist/1722.js +0 -1
  65. package/dist/1722.js.map +0 -1
  66. package/dist/1772.js +0 -1
  67. package/dist/1772.js.map +0 -1
  68. package/dist/1889.js +0 -1
  69. package/dist/1889.js.map +0 -1
  70. package/dist/1972.js +0 -1
  71. package/dist/1972.js.map +0 -1
  72. package/dist/1990.js +0 -1
  73. package/dist/1990.js.map +0 -1
  74. package/dist/2016.js +0 -1
  75. package/dist/2016.js.map +0 -1
  76. package/dist/2080.js +0 -1
  77. package/dist/2080.js.map +0 -1
  78. package/dist/2096.js +0 -1
  79. package/dist/2096.js.map +0 -1
  80. package/dist/2153.js +0 -1
  81. package/dist/2153.js.map +0 -1
  82. package/dist/216.js +0 -1
  83. package/dist/216.js.map +0 -1
  84. package/dist/2270.js +0 -1
  85. package/dist/2270.js.map +0 -1
  86. package/dist/2294.js +0 -1
  87. package/dist/2294.js.map +0 -1
  88. package/dist/2345.js +0 -1
  89. package/dist/2345.js.map +0 -1
  90. package/dist/2402.js +0 -1
  91. package/dist/2402.js.map +0 -1
  92. package/dist/2500.js +0 -1
  93. package/dist/2500.js.map +0 -1
  94. package/dist/251.js +0 -1
  95. package/dist/251.js.map +0 -1
  96. package/dist/257.js +0 -1
  97. package/dist/257.js.map +0 -1
  98. package/dist/2586.js +0 -1
  99. package/dist/2586.js.map +0 -1
  100. package/dist/2625.js +0 -1
  101. package/dist/2625.js.map +0 -1
  102. package/dist/2652.js +0 -1
  103. package/dist/2652.js.map +0 -1
  104. package/dist/2685.js +0 -1
  105. package/dist/2685.js.map +0 -1
  106. package/dist/2948.js +0 -1
  107. package/dist/2948.js.map +0 -1
  108. package/dist/3089.js +0 -1
  109. package/dist/3089.js.map +0 -1
  110. package/dist/3190.js +0 -1
  111. package/dist/3190.js.map +0 -1
  112. package/dist/3224.js +0 -1
  113. package/dist/3224.js.map +0 -1
  114. package/dist/3366.js +0 -1
  115. package/dist/3366.js.map +0 -1
  116. package/dist/349.js +0 -1
  117. package/dist/349.js.map +0 -1
  118. package/dist/3548.js +0 -1
  119. package/dist/3548.js.map +0 -1
  120. package/dist/3571.js +0 -1
  121. package/dist/3571.js.map +0 -1
  122. package/dist/3691.js +0 -1
  123. package/dist/3691.js.map +0 -1
  124. package/dist/3775.js +0 -1
  125. package/dist/3775.js.map +0 -1
  126. package/dist/3816.js +0 -1
  127. package/dist/3816.js.map +0 -1
  128. package/dist/3852.js +0 -1
  129. package/dist/3852.js.map +0 -1
  130. package/dist/3906.js +0 -1
  131. package/dist/3906.js.map +0 -1
  132. package/dist/3963.js +0 -1
  133. package/dist/3963.js.map +0 -1
  134. package/dist/405.js +0 -1
  135. package/dist/405.js.map +0 -1
  136. package/dist/4296.js +0 -1
  137. package/dist/4296.js.map +0 -1
  138. package/dist/4337.js +0 -1
  139. package/dist/4337.js.map +0 -1
  140. package/dist/4735.js +0 -1
  141. package/dist/4735.js.map +0 -1
  142. package/dist/4744.js +0 -1
  143. package/dist/4744.js.map +0 -1
  144. package/dist/4813.js +0 -2
  145. package/dist/4813.js.map +0 -1
  146. package/dist/4858.js +0 -1
  147. package/dist/4858.js.map +0 -1
  148. package/dist/487.js +0 -1
  149. package/dist/487.js.map +0 -1
  150. package/dist/4970.js +0 -1
  151. package/dist/4970.js.map +0 -1
  152. package/dist/5202.js +0 -1
  153. package/dist/5202.js.map +0 -1
  154. package/dist/5294.js +0 -1
  155. package/dist/5294.js.map +0 -1
  156. package/dist/545.js +0 -1
  157. package/dist/545.js.map +0 -1
  158. package/dist/552.js +0 -1
  159. package/dist/552.js.map +0 -1
  160. package/dist/5592.js +0 -1
  161. package/dist/5592.js.map +0 -1
  162. package/dist/5669.js +0 -1
  163. package/dist/5669.js.map +0 -1
  164. package/dist/5884.js +0 -1
  165. package/dist/5884.js.map +0 -1
  166. package/dist/5940.js +0 -1
  167. package/dist/5940.js.map +0 -1
  168. package/dist/6092.js +0 -1
  169. package/dist/6092.js.map +0 -1
  170. package/dist/6155.js +0 -1
  171. package/dist/6155.js.map +0 -1
  172. package/dist/6178.js +0 -1
  173. package/dist/6178.js.map +0 -1
  174. package/dist/6399.js +0 -1
  175. package/dist/6399.js.map +0 -1
  176. package/dist/6456.js +0 -1
  177. package/dist/6466.js +0 -3
  178. package/dist/6466.js.map +0 -1
  179. package/dist/6492.js +0 -1
  180. package/dist/6492.js.map +0 -1
  181. package/dist/6676.js +0 -1
  182. package/dist/6676.js.map +0 -1
  183. package/dist/6800.js +0 -1
  184. package/dist/6800.js.map +0 -1
  185. package/dist/6976.js +0 -1
  186. package/dist/6976.js.map +0 -1
  187. package/dist/7005.js +0 -1
  188. package/dist/7005.js.map +0 -1
  189. package/dist/7201.js +0 -1
  190. package/dist/7201.js.map +0 -1
  191. package/dist/7210.js +0 -1
  192. package/dist/7210.js.map +0 -1
  193. package/dist/7234.js +0 -1
  194. package/dist/7234.js.map +0 -1
  195. package/dist/7261.js +0 -1
  196. package/dist/7261.js.map +0 -1
  197. package/dist/7326.js +0 -1
  198. package/dist/7463.js +0 -1
  199. package/dist/7463.js.map +0 -1
  200. package/dist/7528.js +0 -1
  201. package/dist/7528.js.map +0 -1
  202. package/dist/7584.js +0 -1
  203. package/dist/7584.js.map +0 -1
  204. package/dist/7607.js +0 -1
  205. package/dist/7717.js +0 -1
  206. package/dist/7717.js.map +0 -1
  207. package/dist/7737.js +0 -1
  208. package/dist/7737.js.map +0 -1
  209. package/dist/7739.js +0 -1
  210. package/dist/7739.js.map +0 -1
  211. package/dist/7765.js +0 -1
  212. package/dist/7765.js.map +0 -1
  213. package/dist/7820.js +0 -1
  214. package/dist/7820.js.map +0 -1
  215. package/dist/7844.js +0 -1
  216. package/dist/7844.js.map +0 -1
  217. package/dist/7866.js +0 -1
  218. package/dist/7866.js.map +0 -1
  219. package/dist/7916.js +0 -1
  220. package/dist/7916.js.map +0 -1
  221. package/dist/7971.js +0 -1
  222. package/dist/7971.js.map +0 -1
  223. package/dist/8159.js +0 -7
  224. package/dist/8159.js.map +0 -1
  225. package/dist/8244.js +0 -1
  226. package/dist/8244.js.map +0 -1
  227. package/dist/8262.js +0 -1
  228. package/dist/8262.js.map +0 -1
  229. package/dist/834.js +0 -1
  230. package/dist/834.js.map +0 -1
  231. package/dist/8376.js +0 -1
  232. package/dist/8376.js.map +0 -1
  233. package/dist/845.js +0 -1
  234. package/dist/845.js.map +0 -1
  235. package/dist/8546.js +0 -1
  236. package/dist/8546.js.map +0 -1
  237. package/dist/8570.js +0 -1
  238. package/dist/8570.js.map +0 -1
  239. package/dist/87.js +0 -1
  240. package/dist/87.js.map +0 -1
  241. package/dist/8727.js +0 -1
  242. package/dist/8828.js +0 -1
  243. package/dist/8828.js.map +0 -1
  244. package/dist/8860.js +0 -1
  245. package/dist/8860.js.map +0 -1
  246. package/dist/9036.js +0 -1
  247. package/dist/9036.js.map +0 -1
  248. package/dist/9124.js +0 -1
  249. package/dist/9124.js.map +0 -1
  250. package/dist/9182.js +0 -1
  251. package/dist/921.js +0 -1
  252. package/dist/921.js.map +0 -1
  253. package/dist/9404.js +0 -1
  254. package/dist/9404.js.map +0 -1
  255. package/dist/9406.js +0 -1
  256. package/dist/9406.js.map +0 -1
  257. package/dist/9446.js +0 -1
  258. package/dist/9446.js.map +0 -1
  259. package/dist/9449.js +0 -1
  260. package/dist/9449.js.map +0 -1
  261. package/dist/9566.js +0 -5
  262. package/dist/9566.js.map +0 -1
  263. package/dist/9641.js +0 -1
  264. package/dist/9641.js.map +0 -1
  265. package/dist/9711.js +0 -1
  266. package/dist/9711.js.map +0 -1
  267. package/dist/9801.js +0 -1
  268. package/dist/9801.js.map +0 -1
  269. package/dist/9835.js +0 -11
  270. package/dist/9835.js.map +0 -1
  271. package/dist/kenyaemr-esm-admin-app.js +0 -5
  272. package/dist/kenyaemr-esm-admin-app.js.buildmanifest.json +0 -3173
  273. package/dist/kenyaemr-esm-admin-app.js.map +0 -1
  274. package/dist/main.js +0 -5
  275. package/dist/main.js.map +0 -1
  276. package/dist/routes.json +0 -1
  277. package/src/components/facility-setup/facility-setup.resource.tsx +0 -7
  278. package/src/components/hook/healthWorkerAdapter.ts +0 -213
  279. package/src/components/hook/useFacilityInfo.tsx +0 -37
@@ -5,55 +5,77 @@
5
5
  "activeFrom": "Active From",
6
6
  "activeTo": "Active To",
7
7
  "addAnotherRoleScope": "Add user role scope",
8
+ "addGlobalProperty": "Add global property",
8
9
  "addLocation": "Add Location",
9
10
  "addRoleScope": "Add a new user role scope",
10
11
  "addUser": "Add User",
11
12
  "adminLeftPannel": "Admin left panel",
12
13
  "All users": "All users",
14
+ "bedOccupancy": "Bed occupancy",
13
15
  "cancel": "Cancel",
14
16
  "checkFilters": "Check the filters above",
15
17
  "chooseAStockRole": "Choose a stock role",
16
18
  "chooseIdentifierType": "Choose identifier type",
17
19
  "chooseRegulator": "Choose regulator",
18
20
  "chooseRegulatorType": "Choose regulator option",
21
+ "clearSearchButton": "Clear search button",
19
22
  "completionStatus": "Completion status",
20
23
  "confirmation": "Confirmation",
24
+ "contact": "Contact",
21
25
  "contactAndAdministrator": "Contact & administrator",
22
26
  "continue": "Continue to registration",
27
+ "coordinates": "Coordinates",
28
+ "cots": "Cots",
29
+ "country": "Country",
23
30
  "county": "County",
31
+ "datatypeClassname": "Datatype classname",
32
+ "datatypeConfig": "Datatype config",
24
33
  "delete": "Delete",
34
+ "deleteGlobalProperty": "Delete global property",
35
+ "deleteGlobalPropertyConfirmation": "Are you sure you want to delete the global property \"{{property}}\"?",
36
+ "deleteGlobalPropertyWarning": "This action cannot be undone.",
37
+ "deleting": "Deleting...",
25
38
  "deletingstockUserScope": "Delete Stock User Scope",
26
39
  "demographicInfo": "Demographic info",
27
40
  "demographicInformation": "Demographic Info",
28
41
  "description": "Description",
42
+ "dialysisBeds": "Dialysis",
29
43
  "edit": "Edit",
44
+ "editGlobalProperty": "Edit global property",
30
45
  "editProvider": "Edit Provider Details",
31
46
  "EditProviderDetails": "Edit provider details?",
32
47
  "editRoleScope": "Edit User Role Scope",
33
48
  "editUser": "Edit user",
34
49
  "email": "Enter Email",
35
- "emailAddress": "Email address",
50
+ "emailAddress": "Email",
36
51
  "enable": "Enable?",
37
52
  "enabled": "Enabled",
38
53
  "endTime": "End time",
39
54
  "enterIdentifierNumber": "Enter identifier number",
40
55
  "error": "Error",
41
56
  "errorDeletingUserScope": "Error deleting a user scope",
42
- "errorSyncMsg": "",
57
+ "errorSyncMsg": "Failed to sync {{identifier}}: {{error}}",
43
58
  "etlAdministration": "ETL Administration",
44
59
  "etlOperation": "ETL operations",
45
60
  "etlsOperationsLoading": "Please wait {{currentOperation}} is in progress...",
61
+ "expired": "Expired",
46
62
  "Expired Licensed": "Expired Licensed",
47
63
  "expiresIn3Months": "Expires in 3 months",
48
64
  "expiresSoon": "Expires Soon",
49
- "externalReferenceId": "External Reference ID",
65
+ "externalRef": "External ref",
66
+ "externalReferenceId": "External reference ID",
50
67
  "facilityDetails": "Facility Details",
51
68
  "facilityEmail": "Email",
52
69
  "facilityInfo": "Facility Info",
53
- "facilityName": "Facility Name",
70
+ "facilityName": "Facility name",
54
71
  "facilityOwnership": "Ownership",
55
72
  "facilityPhone": "Phone",
56
- "facilityRegistryCode": "Facility Registry Code",
73
+ "facilityRegistryLoadError": "Failed to load the facility record.",
74
+ "facilityRegistryNotSyncedBody": "This facility has not been pulled from the registry. Click sync to fetch the latest record.",
75
+ "facilityRegistrySyncedFrom": "Pulled {{name}} from the facility registry",
76
+ "facilityRegistrySyncError": "Unable to reach the facility registry",
77
+ "facilityRegistrySyncFailed": "Sync failed",
78
+ "facilityRegistrySyncSuccess": "Facility synced",
57
79
  "facilityType": "Facility type",
58
80
  "familyName": "Family Name",
59
81
  "familyNameRequired": "Family name is required",
@@ -63,33 +85,56 @@
63
85
  "filterBy": "Filter by:",
64
86
  "forcePasswordChange": "Force Password Change",
65
87
  "forcePasswordChangeHelper": "Optionally require this user to change their password on next login",
88
+ "frCode": "FR code",
66
89
  "gender": "Gender",
67
90
  "genderRequired": "Gender is required",
68
- "generalInformation": "General Information",
91
+ "generalInformation": "General information",
69
92
  "givenName": "Given Name",
70
93
  "givenNameRequired": "Given name is required",
71
- "healthWorkerDetailsFound": "Health worker information found in the registry, do you want to use the information to continue with registration?",
72
- "healthWorkerName": "Health worker name",
94
+ "globalProperties": "Global properties",
95
+ "globalProperty": "Global property",
96
+ "globalPropertyError": "Global property",
97
+ "gpCreated": "Global property {{property}} was created successfully.",
98
+ "gpDatatypeConfigPlaceholder": "Optional datatype configuration",
99
+ "gpDeleted": "Global property deleted",
100
+ "gpDeletedSubtitle": "{{property}} was deleted successfully.",
101
+ "gpDeleteError": "Error deleting global property",
102
+ "gpDescriptionPlaceholder": "Optional description",
103
+ "gpHandlerConfigPlaceholder": "Optional handler configuration",
104
+ "gpPreferredHandlerPlaceholder": "Optional preferred handler classname",
105
+ "gpPropertyNameRequired": "Property name is required",
106
+ "gpPropertyPlaceholder": "e.g. setting.name",
107
+ "gpSaveError": "Error saving global property",
108
+ "gpUpdated": "Global property {{property}} was updated successfully.",
109
+ "gpValuePlaceholder": "Enter value",
110
+ "gpValueRequired": "Value is required",
111
+ "handlerConfig": "Handler config",
112
+ "hduBeds": "HDU",
113
+ "healthWorkerDetailsFound": "Health worker found in the registry. Use this information to pre-fill the registration form?",
73
114
  "HealthworkerNotFound": "The health worker records could not be found in Health Worker registry, do you want to continue to create an account",
74
115
  "healthWorkerRegistry": "Health worker registry",
75
116
  "healthWorkerRegistryEmpty": "Create an Account",
76
- "healthWorkerSync": "Health worker information to be synced with the registry.",
117
+ "healthWorkerSync": "Look up this provider in the Kenya health worker registry and overwrite local attributes with registry values.",
77
118
  "healthWorkVerify": "Health worker registry verification",
78
- "hieSyncFailed": "HIE sync failed. Pulling local info.",
79
- "hieSynchronizationError": "An error occurred while synchronizing with HIE",
80
119
  "home": "Home",
81
120
  "hubFacility": "Hub facility",
82
- "hwrERROR": "Sync Failed",
83
- "identificationNumber": "Identification Number",
121
+ "hwrError": "Sync failed",
122
+ "icuBeds": "ICU",
123
+ "identificationNumber": "Identification number",
84
124
  "identificationType": "Identification Type",
85
125
  "identifierNumber": "Identifier number*",
86
126
  "identifierProvider": "Identifier:",
87
- "kephLevel": "Keph Level",
88
- "license": "License",
127
+ "identity": "Identity",
128
+ "inactive": "Inactive",
129
+ "itemsPerPage": "Items per page:",
130
+ "kephLevel": "KEPH level",
131
+ "lastSynced": "Last synced",
89
132
  "licenseAndShaStatus": "License & SHA status",
133
+ "licenseBody": "License body",
134
+ "licenseBodyPlaceholder": "e.g. KMPDC",
90
135
  "Licensed expiring soon": "Licensed expiring soon",
91
- "licenseExpired": "License has expired",
92
- "licenseExpiringSoon": "License is expiring soon",
136
+ "licenseExpired": "License expired",
137
+ "licenseExpiringSoon": "License expiring soon",
93
138
  "licenseExpiry": "License expiry",
94
139
  "licenseExpiryDate": "License Expiry Date",
95
140
  "licenseNumber": "License Number",
@@ -97,11 +142,12 @@
97
142
  "licenses": "Licenses",
98
143
  "licenseStart": "License start",
99
144
  "licenseStatus": "License status",
100
- "licenseValid": "License Valid",
101
- "licenseValidity": "License Validity Period",
102
- "licensingBody": "Licensing Body",
103
- "loading": "",
104
- "loadingState": "",
145
+ "licenseValid": "License valid",
146
+ "licensing": "Licensing & qualifications",
147
+ "licensingBody": "Licensing body",
148
+ "loading": "Loading...",
149
+ "loadingFacility": "Loading facility…",
150
+ "loadingState": "loading...",
105
151
  "location": "Location(s)",
106
152
  "locationCreated": "Location {{locationName}} was created successfully.",
107
153
  "locationName": "Location Name",
@@ -115,56 +161,71 @@
115
161
  "manageUserRoleScope": "Manage user role scope",
116
162
  "manageUsers": "Manage Users",
117
163
  "manageUserWorkspace": "Manage User Workspace",
118
- "mflCode": "MFL code",
119
164
  "middleName": "Middle Name",
165
+ "minMaxItems": "{{min}}-{{max}} of {{total}} items",
120
166
  "nameProvider": "Name:",
121
167
  "names": "Names",
122
168
  "nationalId": "National ID",
123
- "nationalID": "National id",
169
+ "nationalID": "National ID",
124
170
  "nextPage": "Next page",
125
171
  "no": "No",
172
+ "noBedOccupancyData": "No bed occupancy data",
126
173
  "noContractedServices": "No contracted services on record for this facility.",
127
174
  "noData": "No data to display",
128
175
  "noDescriptionAvailable": "No description available",
176
+ "noGlobalProperties": "No global properties to display",
129
177
  "noHwrApi": "Health Care Worker Registry API credentials not configured, Kindly contact system admin. Do you want to continue to create an account",
178
+ "noMatchingGlobalProperties": "No global properties match your search",
130
179
  "noMatchingUsers": "No matching users found",
131
180
  "noRecordsFound": "No ETL Operation logs found",
132
181
  "noRespond": "No",
133
182
  "noResults": "No results found",
183
+ "normalBeds": "Normal",
184
+ "noRolesAssigned": "No roles assigned",
134
185
  "noSearchResults": "",
135
186
  "notContracted": "Not contracted",
136
187
  "noUserRole": "No user role",
137
188
  "noUserRoleScope": "No user role scope",
138
189
  "noUsersAvailable": "No users available",
139
- "operationalStatus": "Operational status",
140
190
  "operationError": "{{operationName}} failed",
141
191
  "operationErrorSubtitle": "An error occurred during the operation.",
142
192
  "operationsConfirmationMessages": "Do you want to {{operationTypeOrName}}?",
143
193
  "operationSuccess": "{{operationName}} successfully {{operationType}}",
144
194
  "operationSuccessSubtitle": "The operation completed successfully.",
195
+ "pageRangeText_one": "of {{count}} page",
196
+ "pageRangeText_other": "of {{count}} pages",
145
197
  "passportNumber": "Passport number",
146
198
  "permanent": "Permanent?",
147
199
  "phone": "Phone",
148
- "phoneNumber": "Phone number",
200
+ "phoneNumber": "Enter Phone Number",
149
201
  "physicalLocation": "Physical location",
150
202
  "postalAddress": "Postal address",
151
- "practiceType": "Practice Type",
203
+ "practiceType": "Practice type",
204
+ "practiceTypePlaceholder": "e.g. Clinical Practice",
205
+ "practitioner": "Practitioner",
206
+ "preferredHandlerClassname": "Preferred handler classname",
152
207
  "previousPage": "Previous page",
153
208
  "procedure": "Procedure",
154
- "professionalCadre": "Professional Cadre",
209
+ "professionalCadre": "Professional cadre",
210
+ "property": "Property (required)",
155
211
  "providerAccount": "Provider Account",
156
212
  "providerBanner": "Provider banner",
213
+ "providerCadre": "Provider cadre",
214
+ "providerCadrePlaceholder": "e.g. MEDICINE",
157
215
  "providerDetails": "Provider details",
158
216
  "providerFail": "Failed to save provider",
159
217
  "providerFailedSubtitle": "An error occurred while creating provider",
160
218
  "providerId": "Provider Id",
161
219
  "providerIdentifiers": "Create a Provider account for this user",
162
220
  "providerLicense": "License Number",
221
+ "providerLicensePlaceholder": "e.g. GP/2026/638333",
163
222
  "providerSaved": "Provider saved successfully",
164
223
  "providerUniqueIdentifier": "Provider Unique Identifier",
165
- "providerUniqueIdentifierPlaceholder": "Enter Provider Unqiue Identifier",
224
+ "providerUniqueIdentifierPlaceholder": "e.g. PUID-0002011-6",
225
+ "puid": "PUID",
166
226
  "pullDetailsfromHWR": "Pulling data from Health worker registry...",
167
227
  "qualification": "Qualification",
228
+ "qualificationPlaceholder": "e.g. MBChB(UON)2009",
168
229
  "recreated": "recreated",
169
230
  "recreateDatatools": "Recreate datatools",
170
231
  "recreateFacilityWideTables": "Recreate facility wide tables",
@@ -174,30 +235,36 @@
174
235
  "refreshingUserScopes": "Refreshing user scopes...",
175
236
  "refreshTables": "Refresh tables",
176
237
  "registrationId": "Registration ID",
177
- "registrationNumber": "Registration number",
238
+ "registrationNumber": "Registration no.",
178
239
  "regulator": "Regulator",
179
240
  "regulatoryBody": "Regulatory body",
241
+ "regulatoryOperationalStatus": "Regulatory status",
180
242
  "remove": "Remove",
181
243
  "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",
244
+ "retry": "Retry sync",
182
245
  "role": "Role",
183
246
  "roles": "Roles Info",
184
247
  "rolesInfo": "Roles Info",
185
248
  "saveAndClose": "Save & close",
186
- "search": "Search location",
249
+ "search": "Search",
250
+ "searchFailed": "Search failed",
187
251
  "searchForLocation": "Search for location",
188
252
  "searchForUsers": "Search for user",
253
+ "searchGlobalPropertiesByName": "Search global property by name",
189
254
  "searchLocation": "Search Location",
190
255
  "searchNoResults": "Found no matching results",
191
256
  "searchNoResultsHelper": "Try searching for a different term",
192
257
  "searchParentLocation": "Search for location...",
258
+ "selectDatatypeClassname": "Select datatype classname",
193
259
  "selectTagPlaceholder": "Select a tag",
194
260
  "selectTags": "Select tag(s)",
195
261
  "sex": "Sex",
196
262
  "shaContractedServices": "SHA contracted services",
197
263
  "shaContractStatus": "SHA contract",
264
+ "shaOperationalStatus": "SHA status",
198
265
  "specialty": "Specialty",
266
+ "specialtyPlaceholder": "e.g. MEDICAL DOCTOR",
199
267
  "startTime": "Start time",
200
- "status": "Status",
201
268
  "stockLocation": "Stock Location",
202
269
  "stockOperation": "Stock Operation",
203
270
  "stockRole": "Stock Role",
@@ -207,19 +274,17 @@
207
274
  "submitting": "Submitting...",
208
275
  "success": "Success",
209
276
  "sync": "Sync",
210
- "synchronizing": "Synchronizing...",
211
277
  "syncing": "Syncing...",
212
- "syncingHieError": "Syncing with HIE Failed",
213
- "syncingHieSuccess": "Synchronization Complete",
214
- "syncMessage": "user details synced successfully",
215
- "syncWithHie": "Sync with HIE",
278
+ "syncMessage": "Provider details synced from the registry",
279
+ "syncNow": "Sync now",
280
+ "syncSuccess": "Sync successful",
281
+ "syncWithRegistry": "Sync with facility registry",
216
282
  "systemId": "System ID",
217
283
  "tagLocation": "Tag Location",
218
284
  "tags": "Tags",
219
- "totalBeds": "Total beds",
285
+ "totalBeds": "Total",
220
286
  "town": "Town",
221
287
  "tryDifferentSearch": "Try a different search term",
222
- "unknown": "Unknown",
223
288
  "unknownError": "An error occurred while searching Health Worker Registry, kindly contact system admin. Do you want to continue to create an account",
224
289
  "unlicensed": "Unlicensed",
225
290
  "Unlicensed": "Unlicensed",
@@ -239,9 +304,12 @@
239
304
  "userSaveFailed": "Fail to save {{error}}",
240
305
  "usersManagement": "Users management",
241
306
  "useValues": "Use values",
307
+ "valid": "Valid",
242
308
  "validity": "Validity",
243
309
  "validLicense": "Valid License",
244
- "viewRoles": "View roles",
310
+ "value": "Value (required)",
311
+ "viewRoles_one": "View roles ({{count}})",
312
+ "viewRoles_other": "View roles ({{count}})",
245
313
  "yes": "Yes",
246
314
  "yesRespond": "Yes"
247
315
  }