@kenyaemr/esm-admin-app 5.4.2-pre.2561 → 5.4.2-pre.2572
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 +4 -4
- package/dist/127.js +1 -1
- package/dist/40.js +1 -1
- package/dist/484.js +1 -1
- package/dist/484.js.map +1 -1
- package/dist/916.js +1 -1
- package/dist/kenyaemr-esm-admin-app.js.buildmanifest.json +15 -15
- package/dist/main.js +9 -9
- package/dist/main.js.map +1 -1
- package/dist/routes.json +1 -1
- package/package.json +1 -1
- package/src/components/provider-banner/provider-banner.component.tsx +3 -3
- package/src/components/provider-banner/provider-banner.module.scss +6 -10
- package/src/routes.json +1 -1
- package/translations/am.json +125 -125
- package/translations/en.json +7 -7
- package/translations/sw.json +3 -3
package/dist/routes.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"$schema":"https://json.openmrs.org/routes.schema.json","backendDependencies":{"kenyaemrCharts":"^1.6.7"},"extensions":[{"component":"adminLeftPanelLink","name":"admin-left-panel-link","slot":"admin-left-panel-slot"},{"component":"userManagementLeftPannelLink","name":"user-management-left-panel-link","slot":"admin-left-panel-slot"},{"component":"etlAdministrationLeftPannelLink","name":"etl-administration-left-panel-link","slot":"admin-left-panel-slot"},{"component":"locationsLeftPanelLink","name":"locations-left-panel-link","slot":"admin-left-panel-slot"},{"component":"facilitySetupLeftPanelLink","name":"facility-setup-left-panel-link","slot":"admin-left-panel-slot"},{"component":"providerBanner","name":"provider-banner","slot":"
|
|
1
|
+
{"$schema":"https://json.openmrs.org/routes.schema.json","backendDependencies":{"kenyaemrCharts":"^1.6.7"},"extensions":[{"component":"adminLeftPanelLink","name":"admin-left-panel-link","slot":"admin-left-panel-slot"},{"component":"userManagementLeftPannelLink","name":"user-management-left-panel-link","slot":"admin-left-panel-slot"},{"component":"etlAdministrationLeftPannelLink","name":"etl-administration-left-panel-link","slot":"admin-left-panel-slot"},{"component":"locationsLeftPanelLink","name":"locations-left-panel-link","slot":"admin-left-panel-slot"},{"component":"facilitySetupLeftPanelLink","name":"facility-setup-left-panel-link","slot":"admin-left-panel-slot"},{"component":"providerBanner","name":"provider-banner","slot":"provider-banner-info-slot","order":1}],"workspaces":[{"name":"manage-user-workspace","component":"manageUserWorkspace","title":"Manage User Workspace","type":"other-form","canMaximize":true,"width":"extra-wide"},{"name":"user-role-scope-workspace","component":"userRoleScopeWorkspace","title":"User Rple Scope Workspace","type":"other-form","canMaximize":true,"width":"extra-wide"},{"name":"add-location-workspace","title":"Add Location","component":"addLocation","type":"workspace"},{"name":"search-location-workspace","title":"Search Location","component":"searchLocationWorkspace","type":"workspace"},{"name":"hwr-sync-workspace","title":"HWR Sync Workspace","component":"hwrSyncWorkspace","type":"other-form"},{"name":"hwr-sync-modal","title":"HWR Sync Modal","component":"hwrSyncModal","type":"modal"}],"modals":[{"component":"operationConfirmationModal","name":"operation-confirmation-modal"},{"component":"hwrConfirmationModal","name":"hwr-confirmation-modal"},{"component":"hwrEmptyModal","name":"hwr-empty-modal"},{"component":"hwrSyncModal","name":"hwr-syncing-modal"}],"pages":[{"component":"root","route":"admin"}],"version":"5.4.2-pre.2572"}
|
package/package.json
CHANGED
|
@@ -70,7 +70,7 @@ const ProviderBannerTag: React.FC = () => {
|
|
|
70
70
|
<div className={styles.bannerContent}>
|
|
71
71
|
<div className={styles.divider} />
|
|
72
72
|
<div className={styles.infoItem}>
|
|
73
|
-
<span className={styles.label}>{t('identifierProvider', 'Identifier
|
|
73
|
+
<span className={styles.label}>{t('identifierProvider', 'Identifier:')}</span>
|
|
74
74
|
<span className={`${styles.value} ${styles.hwiValue}`}>{hwi}</span>
|
|
75
75
|
</div>
|
|
76
76
|
|
|
@@ -78,7 +78,7 @@ const ProviderBannerTag: React.FC = () => {
|
|
|
78
78
|
|
|
79
79
|
<>
|
|
80
80
|
<div className={styles.infoItem}>
|
|
81
|
-
<span className={styles.label}>{t('licenseProvider', 'License
|
|
81
|
+
<span className={styles.label}>{t('licenseProvider', 'License:')}</span>
|
|
82
82
|
|
|
83
83
|
{shouldShowLicenseExpiry && (
|
|
84
84
|
<>
|
|
@@ -97,7 +97,7 @@ const ProviderBannerTag: React.FC = () => {
|
|
|
97
97
|
</>
|
|
98
98
|
|
|
99
99
|
<div className={styles.infoItem}>
|
|
100
|
-
<span className={styles.label}>{t('nameProvider', 'Name
|
|
100
|
+
<span className={styles.label}>{t('nameProvider', 'Name:')}</span>
|
|
101
101
|
<span className={styles.value}>{name}</span>
|
|
102
102
|
</div>
|
|
103
103
|
</div>
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
display: flex;
|
|
12
12
|
align-items: center;
|
|
13
13
|
flex-wrap: wrap;
|
|
14
|
-
|
|
14
|
+
@include type.type-style('caption-01');
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
.infoItem {
|
|
@@ -28,21 +28,17 @@
|
|
|
28
28
|
margin-inline-start: layout.$spacing-04;
|
|
29
29
|
}
|
|
30
30
|
.label {
|
|
31
|
-
color: colors.$
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
&::after {
|
|
36
|
-
content: '';
|
|
37
|
-
margin-left: layout.$spacing-01;
|
|
38
|
-
}
|
|
31
|
+
color: colors.$gray-90;
|
|
32
|
+
content: '';
|
|
33
|
+
margin-left: layout.$spacing-01;
|
|
39
34
|
}
|
|
40
35
|
|
|
41
36
|
.value {
|
|
42
|
-
color: colors.$
|
|
37
|
+
color: colors.$gray-90;
|
|
43
38
|
font-weight: 600;
|
|
44
39
|
font-size: 1rem;
|
|
45
40
|
white-space: nowrap;
|
|
41
|
+
@include type.type-style('caption-01');
|
|
46
42
|
}
|
|
47
43
|
|
|
48
44
|
.hwiValue {
|
package/src/routes.json
CHANGED
package/translations/am.json
CHANGED
|
@@ -1,132 +1,132 @@
|
|
|
1
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
|
-
"continue": "
|
|
17
|
-
"delete": "
|
|
18
|
-
"deletingstockUserScope": "
|
|
19
|
-
"description": "
|
|
20
|
-
"edit": "
|
|
21
|
-
"editUser": "
|
|
22
|
-
"emailAddress": "
|
|
23
|
-
"enable": "
|
|
24
|
-
"enabled": "
|
|
25
|
-
"endTime": "
|
|
26
|
-
"errorDeletingUserScope": "
|
|
27
|
-
"etlAdministration": "ETL
|
|
28
|
-
"etlOperation": "ETL
|
|
29
|
-
"etlsOperationsLoading": "{{currentOperation}}
|
|
30
|
-
"Expired Licensed": "
|
|
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
|
+
"continue": "Continue to registration",
|
|
17
|
+
"delete": "Delete",
|
|
18
|
+
"deletingstockUserScope": "Delete Stock User Scope",
|
|
19
|
+
"description": "Description",
|
|
20
|
+
"edit": "Edit",
|
|
21
|
+
"editUser": "Edit user",
|
|
22
|
+
"emailAddress": "Email address",
|
|
23
|
+
"enable": "Enable?",
|
|
24
|
+
"enabled": "Enabled",
|
|
25
|
+
"endTime": "End time",
|
|
26
|
+
"errorDeletingUserScope": "Error deleting a user scope",
|
|
27
|
+
"etlAdministration": "ETL Administration",
|
|
28
|
+
"etlOperation": "ETL operations",
|
|
29
|
+
"etlsOperationsLoading": "Please wait {{currentOperation}} is in progress...",
|
|
30
|
+
"Expired Licensed": "Expired Licensed",
|
|
31
31
|
"expiresIn3Months": "Expires in 3 months",
|
|
32
32
|
"expiresSoon": "Expires Soon",
|
|
33
|
-
"facilityCode": "
|
|
34
|
-
"facilityDetails": "
|
|
35
|
-
"facilityInfo": "
|
|
36
|
-
"facilityName": "
|
|
37
|
-
"facilityRegistryCode": "
|
|
38
|
-
"filter": "
|
|
39
|
-
"filterBy": "
|
|
40
|
-
"generalInformation": "
|
|
41
|
-
"HealthworkerNotFound": "
|
|
42
|
-
"healthWorkerRegistryEmpty": "
|
|
43
|
-
"hieSynchronizationError": "
|
|
44
|
-
"home": "
|
|
45
|
-
"identifierProvider": "",
|
|
46
|
-
"kephLevel": "
|
|
47
|
-
"Licensed expiring soon": "
|
|
48
|
-
"licenseExpired": "
|
|
49
|
-
"licenseExpiringSoon": "
|
|
50
|
-
"licenseExpiryDate": "
|
|
51
|
-
"licenseNumber": "
|
|
52
|
-
"licenseProvider": "",
|
|
53
|
-
"loading": "
|
|
33
|
+
"facilityCode": "Facility KMHFR Code",
|
|
34
|
+
"facilityDetails": "Facility Details",
|
|
35
|
+
"facilityInfo": "Facility Info",
|
|
36
|
+
"facilityName": "Facility Name",
|
|
37
|
+
"facilityRegistryCode": "Facility Registry Code",
|
|
38
|
+
"filter": "Filter",
|
|
39
|
+
"filterBy": "Filter by:",
|
|
40
|
+
"generalInformation": "General Information",
|
|
41
|
+
"HealthworkerNotFound": "The health worker records could not be found in Health Worker registry, do you want to continue to create an account",
|
|
42
|
+
"healthWorkerRegistryEmpty": "Create an Account",
|
|
43
|
+
"hieSynchronizationError": "An error occurred while synchronizing with HIE",
|
|
44
|
+
"home": "Home",
|
|
45
|
+
"identifierProvider": "Identifier:",
|
|
46
|
+
"kephLevel": "Keph Level",
|
|
47
|
+
"Licensed expiring soon": "Licensed expiring soon",
|
|
48
|
+
"licenseExpired": "License has expired",
|
|
49
|
+
"licenseExpiringSoon": "License is expiring soon",
|
|
50
|
+
"licenseExpiryDate": "License Expiry Date",
|
|
51
|
+
"licenseNumber": "License Number",
|
|
52
|
+
"licenseProvider": "License:",
|
|
53
|
+
"loading": "",
|
|
54
54
|
"loadingState": "",
|
|
55
|
-
"location": "
|
|
56
|
-
"locationName": "
|
|
57
|
-
"locations": "
|
|
58
|
-
"manageUserRoleScope": "
|
|
59
|
-
"nameProvider": "",
|
|
60
|
-
"names": "
|
|
61
|
-
"nationalId": "
|
|
62
|
-
"nextPage": "
|
|
63
|
-
"no": "
|
|
64
|
-
"noData": "
|
|
65
|
-
"noDescriptionAvailable": "
|
|
66
|
-
"noHwrApi": "
|
|
67
|
-
"noMatchingUsers": "
|
|
68
|
-
"noRecordsFound": "
|
|
69
|
-
"noRespond": "
|
|
70
|
-
"noSearchResults": "
|
|
71
|
-
"noUserRoleScope": "
|
|
72
|
-
"noUsersAvailable": "
|
|
73
|
-
"operationError": "{{operationName}}
|
|
74
|
-
"operationErrorSubtitle": "
|
|
75
|
-
"operationsConfirmationMessages": "{{operationTypeOrName}}
|
|
76
|
-
"operationSuccess": "{{operationName}}
|
|
77
|
-
"operationSuccessSubtitle": "
|
|
78
|
-
"passportNumber": "
|
|
79
|
-
"permanent": "
|
|
80
|
-
"phoneNumber": "
|
|
81
|
-
"previousPage": "
|
|
82
|
-
"procedure": "
|
|
55
|
+
"location": "Location(s)",
|
|
56
|
+
"locationName": "Location Name",
|
|
57
|
+
"locations": "Locations",
|
|
58
|
+
"manageUserRoleScope": "Manage user role scope",
|
|
59
|
+
"nameProvider": "Name:",
|
|
60
|
+
"names": "Names",
|
|
61
|
+
"nationalId": "National ID",
|
|
62
|
+
"nextPage": "Next page",
|
|
63
|
+
"no": "No",
|
|
64
|
+
"noData": "No data to display",
|
|
65
|
+
"noDescriptionAvailable": "No description available",
|
|
66
|
+
"noHwrApi": "Health Care Worker Registry API credentials not configured, Kindly contact system admin. Do you want to continue to create an account",
|
|
67
|
+
"noMatchingUsers": "No matching users found",
|
|
68
|
+
"noRecordsFound": "No ETL Operation logs found",
|
|
69
|
+
"noRespond": "No",
|
|
70
|
+
"noSearchResults": "",
|
|
71
|
+
"noUserRoleScope": "No user role scope",
|
|
72
|
+
"noUsersAvailable": "No users available",
|
|
73
|
+
"operationError": "{{operationName}} failed",
|
|
74
|
+
"operationErrorSubtitle": "An error occurred during the operation.",
|
|
75
|
+
"operationsConfirmationMessages": "Do you want to {{operationTypeOrName}}?",
|
|
76
|
+
"operationSuccess": "{{operationName}} successfully {{operationType}}",
|
|
77
|
+
"operationSuccessSubtitle": "The operation completed successfully.",
|
|
78
|
+
"passportNumber": "Passport number",
|
|
79
|
+
"permanent": "Permanent?",
|
|
80
|
+
"phoneNumber": "Phone number",
|
|
81
|
+
"previousPage": "Previous page",
|
|
82
|
+
"procedure": "Procedure",
|
|
83
83
|
"providerBanner": "Provider banner",
|
|
84
|
-
"providerUniqueIdentifier": "
|
|
85
|
-
"recreated": "
|
|
86
|
-
"recreateDatatools": "
|
|
87
|
-
"recreateFacilityWideTables": "
|
|
88
|
-
"recreateTables": "
|
|
89
|
-
"refreshDwapi": "
|
|
90
|
-
"refreshed": "
|
|
91
|
-
"refreshingUserScopes": "
|
|
92
|
-
"refreshTables": "
|
|
93
|
-
"registrationNumber": "
|
|
94
|
-
"remove": "
|
|
95
|
-
"ResourceNotFound": "
|
|
96
|
-
"role": "
|
|
97
|
-
"search": "
|
|
98
|
-
"searchForUsers": "
|
|
99
|
-
"searchNoResults": "
|
|
100
|
-
"searchNoResultsHelper": "
|
|
101
|
-
"shaContracted": "SHA
|
|
102
|
-
"shaExpiry": "
|
|
103
|
-
"shaInformation": "SHA
|
|
104
|
-
"shalicenceNumber": "SHA
|
|
105
|
-
"shaStatus": "SHA
|
|
106
|
-
"startTime": "
|
|
107
|
-
"stockLocation": "
|
|
108
|
-
"stockOperation": "
|
|
109
|
-
"stockRole": "
|
|
110
|
-
"stockRoleAccess": "
|
|
111
|
-
"stockUserScopeDeletedSuccessfully": "
|
|
112
|
-
"sync": "
|
|
113
|
-
"synchronizeWithHie": "
|
|
114
|
-
"synchronizingFacilityData": "
|
|
115
|
-
"syncingHieError": "
|
|
116
|
-
"syncingHieSuccess": "
|
|
117
|
-
"systemId": "
|
|
118
|
-
"tagLocation": "
|
|
119
|
-
"tags": "
|
|
120
|
-
"tryDifferentSearch": "
|
|
121
|
-
"unknownError": "
|
|
122
|
-
"unlicensed": "
|
|
123
|
-
"Unlicensed": "
|
|
124
|
-
"userManagement": "
|
|
125
|
-
"userRoleScope": "
|
|
126
|
-
"users": "
|
|
127
|
-
"usersManagement": "
|
|
84
|
+
"providerUniqueIdentifier": "Provider Unique Identifier",
|
|
85
|
+
"recreated": "recreated",
|
|
86
|
+
"recreateDatatools": "Recreate datatools",
|
|
87
|
+
"recreateFacilityWideTables": "Recreate facility wide tables",
|
|
88
|
+
"recreateTables": "Recreate tables",
|
|
89
|
+
"refreshDwapi": "Refresh DWAPI tables",
|
|
90
|
+
"refreshed": "refreshed",
|
|
91
|
+
"refreshingUserScopes": "Refreshing user scopes...",
|
|
92
|
+
"refreshTables": "Refresh tables",
|
|
93
|
+
"registrationNumber": "Registration number",
|
|
94
|
+
"remove": "Remove",
|
|
95
|
+
"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",
|
|
96
|
+
"role": "Role",
|
|
97
|
+
"search": "Search location",
|
|
98
|
+
"searchForUsers": "Search for user",
|
|
99
|
+
"searchNoResults": "Found no matching results",
|
|
100
|
+
"searchNoResultsHelper": "Try searching for a different term",
|
|
101
|
+
"shaContracted": "SHA Contracted",
|
|
102
|
+
"shaExpiry": "SHA Expiry Date",
|
|
103
|
+
"shaInformation": "SHA Information",
|
|
104
|
+
"shalicenceNumber": "SHA License Number",
|
|
105
|
+
"shaStatus": "SHA Status",
|
|
106
|
+
"startTime": "Start time",
|
|
107
|
+
"stockLocation": "Stock Location",
|
|
108
|
+
"stockOperation": "Stock Operation",
|
|
109
|
+
"stockRole": "Stock Role",
|
|
110
|
+
"stockRoleAccess": "Stock Role Access",
|
|
111
|
+
"stockUserScopeDeletedSuccessfully": "Stock User Scope Deleted Successfully",
|
|
112
|
+
"sync": "Sync",
|
|
113
|
+
"synchronizeWithHie": "Synchronize with HIE",
|
|
114
|
+
"synchronizingFacilityData": "Please wait, Synchronizing Info.",
|
|
115
|
+
"syncingHieError": "Syncing with HIE Failed",
|
|
116
|
+
"syncingHieSuccess": "Synchronization Complete",
|
|
117
|
+
"systemId": "System ID",
|
|
118
|
+
"tagLocation": "Tag Location",
|
|
119
|
+
"tags": "Tags",
|
|
120
|
+
"tryDifferentSearch": "Try a different search term",
|
|
121
|
+
"unknownError": "An error occurred while searching Health Worker Registry, kindly contact system admin. Do you want to continue to create an account",
|
|
122
|
+
"unlicensed": "Unlicensed",
|
|
123
|
+
"Unlicensed": "Unlicensed",
|
|
124
|
+
"userManagement": "User Management",
|
|
125
|
+
"userRoleScope": "User Role Scope",
|
|
126
|
+
"users": "Users",
|
|
127
|
+
"usersManagement": "Users management",
|
|
128
128
|
"validLicense": "Valid License",
|
|
129
|
-
"viewRoles": "
|
|
130
|
-
"yes": "
|
|
131
|
-
"yesRespond": "
|
|
129
|
+
"viewRoles": "View roles",
|
|
130
|
+
"yes": "Yes",
|
|
131
|
+
"yesRespond": "Yes"
|
|
132
132
|
}
|
package/translations/en.json
CHANGED
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
"deletingstockUserScope": "Delete Stock User Scope",
|
|
19
19
|
"description": "Description",
|
|
20
20
|
"edit": "Edit",
|
|
21
|
-
"editUser": "Edit
|
|
21
|
+
"editUser": "Edit user",
|
|
22
22
|
"emailAddress": "Email address",
|
|
23
23
|
"enable": "Enable?",
|
|
24
24
|
"enabled": "Enabled",
|
|
25
25
|
"endTime": "End time",
|
|
26
26
|
"errorDeletingUserScope": "Error deleting a user scope",
|
|
27
|
-
"etlAdministration": "ETL
|
|
27
|
+
"etlAdministration": "ETL Administration",
|
|
28
28
|
"etlOperation": "ETL operations",
|
|
29
29
|
"etlsOperationsLoading": "Please wait {{currentOperation}} is in progress...",
|
|
30
30
|
"Expired Licensed": "Expired Licensed",
|
|
@@ -42,28 +42,28 @@
|
|
|
42
42
|
"healthWorkerRegistryEmpty": "Create an Account",
|
|
43
43
|
"hieSynchronizationError": "An error occurred while synchronizing with HIE",
|
|
44
44
|
"home": "Home",
|
|
45
|
-
"identifierProvider": "",
|
|
45
|
+
"identifierProvider": "Identifier:",
|
|
46
46
|
"kephLevel": "Keph Level",
|
|
47
47
|
"Licensed expiring soon": "Licensed expiring soon",
|
|
48
48
|
"licenseExpired": "License has expired",
|
|
49
49
|
"licenseExpiringSoon": "License is expiring soon",
|
|
50
50
|
"licenseExpiryDate": "License Expiry Date",
|
|
51
51
|
"licenseNumber": "License Number",
|
|
52
|
-
"licenseProvider": "",
|
|
52
|
+
"licenseProvider": "License:",
|
|
53
53
|
"loading": "",
|
|
54
54
|
"loadingState": "",
|
|
55
55
|
"location": "Location(s)",
|
|
56
56
|
"locationName": "Location Name",
|
|
57
57
|
"locations": "Locations",
|
|
58
58
|
"manageUserRoleScope": "Manage user role scope",
|
|
59
|
-
"nameProvider": "",
|
|
59
|
+
"nameProvider": "Name:",
|
|
60
60
|
"names": "Names",
|
|
61
61
|
"nationalId": "National ID",
|
|
62
62
|
"nextPage": "Next page",
|
|
63
63
|
"no": "No",
|
|
64
64
|
"noData": "No data to display",
|
|
65
65
|
"noDescriptionAvailable": "No description available",
|
|
66
|
-
"noHwrApi": "Health Care Worker Registry API credentials not configured,Kindly contact system admin. Do you want to continue to create an account",
|
|
66
|
+
"noHwrApi": "Health Care Worker Registry API credentials not configured, Kindly contact system admin. Do you want to continue to create an account",
|
|
67
67
|
"noMatchingUsers": "No matching users found",
|
|
68
68
|
"noRecordsFound": "No ETL Operation logs found",
|
|
69
69
|
"noRespond": "No",
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"tagLocation": "Tag Location",
|
|
119
119
|
"tags": "Tags",
|
|
120
120
|
"tryDifferentSearch": "Try a different search term",
|
|
121
|
-
"unknownError": "An error
|
|
121
|
+
"unknownError": "An error occurred while searching Health Worker Registry, kindly contact system admin. Do you want to continue to create an account",
|
|
122
122
|
"unlicensed": "Unlicensed",
|
|
123
123
|
"Unlicensed": "Unlicensed",
|
|
124
124
|
"userManagement": "User Management",
|
package/translations/sw.json
CHANGED
|
@@ -42,21 +42,21 @@
|
|
|
42
42
|
"healthWorkerRegistryEmpty": "Create an Account",
|
|
43
43
|
"hieSynchronizationError": "An error occurred while synchronizing with HIE",
|
|
44
44
|
"home": "Home",
|
|
45
|
-
"identifierProvider": "",
|
|
45
|
+
"identifierProvider": "Identifier:",
|
|
46
46
|
"kephLevel": "Keph Level",
|
|
47
47
|
"Licensed expiring soon": "Licensed expiring soon",
|
|
48
48
|
"licenseExpired": "License has expired",
|
|
49
49
|
"licenseExpiringSoon": "License is expiring soon",
|
|
50
50
|
"licenseExpiryDate": "License Expiry Date",
|
|
51
51
|
"licenseNumber": "License Number",
|
|
52
|
-
"licenseProvider": "",
|
|
52
|
+
"licenseProvider": "License:",
|
|
53
53
|
"loading": "",
|
|
54
54
|
"loadingState": "",
|
|
55
55
|
"location": "Location(s)",
|
|
56
56
|
"locationName": "Location Name",
|
|
57
57
|
"locations": "Locations",
|
|
58
58
|
"manageUserRoleScope": "Manage user role scope",
|
|
59
|
-
"nameProvider": "",
|
|
59
|
+
"nameProvider": "Name:",
|
|
60
60
|
"names": "Names",
|
|
61
61
|
"nationalId": "National ID",
|
|
62
62
|
"nextPage": "Next page",
|