@digihmis/esm-administration-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/101.js +1 -0
- package/dist/101.js.map +1 -0
- package/dist/117.js +1 -0
- package/dist/117.js.map +1 -0
- package/dist/132.js +1 -0
- package/dist/132.js.map +1 -0
- package/dist/15.js +1 -0
- package/dist/15.js.map +1 -0
- package/dist/152.js +1 -0
- package/dist/152.js.map +1 -0
- package/dist/153.js +1 -0
- package/dist/153.js.map +1 -0
- package/dist/190.js +1 -0
- package/dist/190.js.map +1 -0
- package/dist/209.js +1 -0
- package/dist/209.js.map +1 -0
- package/dist/266.js +1 -0
- package/dist/266.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/394.js +1 -0
- package/dist/394.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/454.js +1 -0
- package/dist/454.js.map +1 -0
- package/dist/466.js +1 -0
- package/dist/466.js.map +1 -0
- package/dist/482.js +1 -0
- package/dist/482.js.map +1 -0
- package/dist/501.js +1 -0
- package/dist/501.js.map +1 -0
- package/dist/508.js +1 -0
- package/dist/508.js.map +1 -0
- package/dist/578.js +1 -0
- package/dist/578.js.map +1 -0
- package/dist/598.js +1 -0
- package/dist/598.js.map +1 -0
- package/dist/606.js +1 -0
- package/dist/606.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/685.js +1 -0
- package/dist/685.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/737.js +12 -0
- package/dist/737.js.map +1 -0
- package/dist/742.js +1 -0
- package/dist/742.js.map +1 -0
- package/dist/747.js +1 -0
- package/dist/747.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/916.js +15 -0
- package/dist/916.js.map +1 -0
- package/dist/940.js +1 -0
- package/dist/940.js.map +1 -0
- package/dist/digihmis-esm-administration-app.js +6 -0
- package/dist/digihmis-esm-administration-app.js.buildmanifest.json +1100 -0
- package/dist/digihmis-esm-administration-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/increment-version.js +17 -0
- package/jest.config.js +26 -0
- package/package.json +51 -0
- package/release-version.js +16 -0
- package/rspack.config.js +1 -0
- package/src/bed-management/bed-management.component.tsx +19 -0
- package/src/bed-management/bed-management.scss +0 -0
- package/src/billing-management/billing-charge-items/billing-charge-items-modal/billing-charge-items.modal.tsx +79 -0
- package/src/billing-management/billing-charge-items/billing-charge-items-modal/billing-charge-items.resource.ts +11 -0
- package/src/billing-management/billing-charge-items/billing-charge-items-workspace/billing-charge-item.workspace.tsx +212 -0
- package/src/billing-management/billing-charge-items/billing-charge-items-workspace/billing-charge-items.resource.ts +51 -0
- package/src/billing-management/billing-charge-items/billing-charge-items-workspace/billing-charge-service.workspace.tsx +296 -0
- package/src/billing-management/billing-charge-items/billing-charge-items-workspace/components/concept-search.component.tsx +67 -0
- package/src/billing-management/billing-charge-items/billing-charge-items-workspace/components/price.component.tsx +81 -0
- package/src/billing-management/billing-charge-items/billing-charge-items-workspace/components/stock-search.component.tsx +107 -0
- package/src/billing-management/billing-charge-items/billing-charge-items-workspace/global/billing-charge-commodity.scss +61 -0
- package/src/billing-management/billing-charge-items/billing-charge-items-workspace/global/billing-charge-items.scss +59 -0
- package/src/billing-management/billing-charge-items/billing-charge-items-workspace/schemas/form-schemas.ts +33 -0
- package/src/billing-management/billing-charge-items/billing-charge-items.component.tsx +222 -0
- package/src/billing-management/billing-charge-items/billing-charge-items.resource.ts +20 -0
- package/src/billing-management/billing-charge-items/billing-charge-items.scss +84 -0
- package/src/billing-management/billing-charge-items/type/index.ts +88 -0
- package/src/billing-management/billing-charge-items/utils/index.ts +96 -0
- package/src/billing-management/billing-management.component.tsx +21 -0
- package/src/billing-management/billing-management.scss +0 -0
- package/src/billing-management/billing-payment-modes/billing-payment-modes-modal/billing-delete-payment-modes.modal.scss +28 -0
- package/src/billing-management/billing-payment-modes/billing-payment-modes-modal/billing-delete-payment-modes.modal.tsx +67 -0
- package/src/billing-management/billing-payment-modes/billing-payment-modes-modal/delete-payment-mode.test.tsx +56 -0
- package/src/billing-management/billing-payment-modes/billing-payment-modes-workspace/billing-payment-modes-form-schema.ts +52 -0
- package/src/billing-management/billing-payment-modes/billing-payment-modes-workspace/billing-payment-modes.resource.ts +35 -0
- package/src/billing-management/billing-payment-modes/billing-payment-modes-workspace/billing-payment-modes.workspace.scss +33 -0
- package/src/billing-management/billing-payment-modes/billing-payment-modes-workspace/billing-payment-modes.workspace.test.tsx +239 -0
- package/src/billing-management/billing-payment-modes/billing-payment-modes-workspace/billing-payment-modes.workspace.tsx +218 -0
- package/src/billing-management/billing-payment-modes/billing-payment-modes-workspace/payment-attributes/payment-mode-attributes.component.tsx +156 -0
- package/src/billing-management/billing-payment-modes/billing-payment-modes-workspace/payment-attributes/payment-mode-attributes.scss +10 -0
- package/src/billing-management/billing-payment-modes/billing-payment-modes.component.tsx +243 -0
- package/src/billing-management/billing-payment-modes/billing-payment-modes.resource.ts +23 -0
- package/src/billing-management/billing-payment-modes/billing-payment-modes.scss +140 -0
- package/src/billing-management/billing-payment-modes/type/index.ts +42 -0
- package/src/billing-management/billing-payment-points/billing-payment-point-modal/billing-delete-payment-modes.modal.scss +28 -0
- package/src/billing-management/billing-payment-points/billing-payment-point-modal/billing-delete-payment-point.modal.tsx +72 -0
- package/src/billing-management/billing-payment-points/billing-payment-point-modal/delete-payment-point.test.tsx +56 -0
- package/src/billing-management/billing-payment-points/billing-payment-point.component.tsx +202 -0
- package/src/billing-management/billing-payment-points/billing-payment-point.resource.ts +16 -0
- package/src/billing-management/billing-payment-points/billing-payment-point.scss +0 -0
- package/src/billing-management/billing-payment-points/billing-payment-points-workspace/billing-payment-point.resource.ts +39 -0
- package/src/billing-management/billing-payment-points/billing-payment-points-workspace/billing-payment-point.workspace.scss +33 -0
- package/src/billing-management/billing-payment-points/billing-payment-points-workspace/billing-payment-points.workspace.tsx +194 -0
- package/src/billing-management/billing-payment-points/type/index.ts +35 -0
- package/src/billing-management/billing-tabs/billing-tabs.component.scss +15 -0
- package/src/billing-management/billing-tabs/billing-tabs.component.tsx +36 -0
- package/src/components/custom-icon-wrapper/custom-icon-wrapper.component.tsx +17 -0
- package/src/components/custom-page-header/custom-page-header.component.tsx +38 -0
- package/src/components/custom-page-header/custom-page-header.scss +76 -0
- package/src/config-schema.ts +142 -0
- package/src/constant/index.ts +1 -0
- package/src/dashboard.meta.ts +47 -0
- package/src/declarations.d.ts +6 -0
- package/src/form-builder/form-builder.component.tsx +19 -0
- package/src/form-builder/form-builder.scss +0 -0
- package/src/hooks/useConcept.ts +13 -0
- package/src/hooks/useQueues.ts +22 -0
- package/src/hooks/useSystemSetting.ts +18 -0
- package/src/index.ts +133 -0
- package/src/left-panel/left-panel.component.tsx +49 -0
- package/src/left-panel/left-panel.scss +13 -0
- package/src/location-management/components/auto-suggest/autosuggest.component.tsx +149 -0
- package/src/location-management/components/auto-suggest/autosuggest.scss +61 -0
- package/src/location-management/components/auto-suggest/location-autosuggest.component.tsx +97 -0
- package/src/location-management/components/auto-suggest/location-autosuggest.scss +48 -0
- package/src/location-management/components/custom-results-tile/results-tile.component.tsx +43 -0
- package/src/location-management/components/custom-results-tile/results-tile.scss +86 -0
- package/src/location-management/forms/add-location/add-location.workspace.scss +71 -0
- package/src/location-management/forms/add-location/add-location.workspace.tsx +199 -0
- package/src/location-management/forms/search-location/search-location.workspace.scss +71 -0
- package/src/location-management/forms/search-location/search-location.workspace.tsx +214 -0
- package/src/location-management/helpers/index.ts +33 -0
- package/src/location-management/hooks/UseFacilityLocations.ts +12 -0
- package/src/location-management/hooks/useLocation.ts +18 -0
- package/src/location-management/hooks/useLocationTags.ts +15 -0
- package/src/location-management/location-management-dashboard.component.tsx +21 -0
- package/src/location-management/location-management-dashboard.scss +3 -0
- package/src/location-management/tables/locations-table.component.tsx +242 -0
- package/src/location-management/tables/locations-table.resource.ts +26 -0
- package/src/location-management/tables/locations-table.scss +114 -0
- package/src/location-management/types/index.ts +120 -0
- package/src/queue-management/queue-management-dashboard.component.tsx +23 -0
- package/src/queue-management/queue-management-dashboard.scss +8 -0
- package/src/queue-management/queue-management-table/queue-management-table.component.tsx +296 -0
- package/src/queue-management/queue-management-table/queue-management-table.scss +78 -0
- package/src/queue-management/queue-management-table/queue-management.resource.ts +39 -0
- package/src/queue-management/queue-management-workspace/queue-room/queue-room-form.scss +56 -0
- package/src/queue-management/queue-management-workspace/queue-room/queue-room-form.test.tsx +82 -0
- package/src/queue-management/queue-management-workspace/queue-room/queue-room-form.workspace.tsx +169 -0
- package/src/queue-management/queue-management-workspace/queue-room/queue-room.resource.ts +20 -0
- package/src/queue-management/queue-management-workspace/queue-service/queue-service-form.scss +61 -0
- package/src/queue-management/queue-management-workspace/queue-service/queue-service-form.test.tsx +127 -0
- package/src/queue-management/queue-management-workspace/queue-service/queue-service-form.workspace.tsx +178 -0
- package/src/queue-management/queue-management-workspace/queue-service/queue-service.resource.ts +55 -0
- package/src/queue-management/queue-types/index.ts +33 -0
- package/src/routes.json +157 -0
- package/src/setup-tests.ts +1 -0
- package/src/system-info/system-info.component.tsx +338 -0
- package/src/system-info/system-info.resource.ts +40 -0
- package/src/system-info/system-info.scss +622 -0
- package/src/type/index.ts +6 -0
- package/translations/am.json +111 -0
- package/translations/ar.json +115 -0
- package/translations/en.json +111 -0
- package/translations/es.json +112 -0
- package/translations/fr.json +112 -0
- package/translations/he.json +112 -0
- package/translations/km.json +110 -0
- package/translations/pt.json +112 -0
- package/translations/sw.json +111 -0
- package/translations/vi.json +110 -0
- package/translations/zh.json +110 -0
- package/tsconfig.json +5 -0
- package/version.js +27 -0
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
{
|
|
2
|
+
"AboutDigiHMIS": "Made with ❤️ by the DigiHMIS Team",
|
|
3
|
+
"actions": "Actions",
|
|
4
|
+
"addChargeItem": "Add Charge Item",
|
|
5
|
+
"addChargeService": "Add Charge Service",
|
|
6
|
+
"addCommodityItem": "Add Commodity Item",
|
|
7
|
+
"addLocation": "Add Location",
|
|
8
|
+
"addNewLocationWorkspace": "Add new location",
|
|
9
|
+
"addNewQueueService": "Add New Queue Service",
|
|
10
|
+
"addNewQueueServiceRoom": "Add new queue service room",
|
|
11
|
+
"addPaymentMode": "Add Payment Mode",
|
|
12
|
+
"addPaymentPoint": "Add Payment Point",
|
|
13
|
+
"addQueue": "Add Queue",
|
|
14
|
+
"addQueueRoom": "Add Queue Room",
|
|
15
|
+
"addServiceItem": "Add Charge Service",
|
|
16
|
+
"aheadOfPublishedVersion": "Ahead of published version",
|
|
17
|
+
"attributeDescription": "Attribute description",
|
|
18
|
+
"attributeEnabled": "Attribute enabled",
|
|
19
|
+
"attributeFormat": "Attribute format",
|
|
20
|
+
"attributeFormatHelperText": "The format of the attribute value e.g Free text, Number",
|
|
21
|
+
"attributeName": "Attribute name",
|
|
22
|
+
"attributeRequired": "Attribute required",
|
|
23
|
+
"attributeRetiredReason": "Attribute retired reason",
|
|
24
|
+
"billableServices": "Billable services",
|
|
25
|
+
"BuildDateTime": "Build date time",
|
|
26
|
+
"chargeItems": "Charge Items",
|
|
27
|
+
"chargeItemsTable": "Charge items table",
|
|
28
|
+
"checkFilters": "Please check the filters above and try again",
|
|
29
|
+
"checkForUpdates": "Check for updates",
|
|
30
|
+
"clear": "Clear",
|
|
31
|
+
"clearSearch": "Clear search",
|
|
32
|
+
"configureBed": "Configure bed allocation, availability, and assignments",
|
|
33
|
+
"configureBilling": "Configure billing and payment processes",
|
|
34
|
+
"configureForms": "Create, edit, and manage clinical forms",
|
|
35
|
+
"dateCreated": "Date Created",
|
|
36
|
+
"delete": "Delete",
|
|
37
|
+
"description": "Description",
|
|
38
|
+
"disabled": "Disabled",
|
|
39
|
+
"edit": "Edit",
|
|
40
|
+
"editChargeItem": "Edit Charge Item",
|
|
41
|
+
"editPaymentMode": "Edit Payment Mode",
|
|
42
|
+
"editPaymentPoint": "Edit Payment Point",
|
|
43
|
+
"editServiceChargeItem": "Edit Service Charge Item",
|
|
44
|
+
"enabled": "Enabled",
|
|
45
|
+
"enterAttributeDescription": "Enter attribute description",
|
|
46
|
+
"enterAttributeName": "Enter attribute name",
|
|
47
|
+
"enterAttributeRetiredReason": "Enter attribute retired reason",
|
|
48
|
+
"enterPrice": "Enter price",
|
|
49
|
+
"enterRegExp": "Enter regular expression",
|
|
50
|
+
"loading": "Loading...",
|
|
51
|
+
"loadingData": "Loading data...",
|
|
52
|
+
"location": "Location",
|
|
53
|
+
"locationName": "Location Name",
|
|
54
|
+
"locations": "Locations",
|
|
55
|
+
"manageLocations": "Manage locations and tags",
|
|
56
|
+
"manageQueues": "Manage patient queues and facility rooms",
|
|
57
|
+
"name": "Name",
|
|
58
|
+
"nextPage": "Next page",
|
|
59
|
+
"no": "No",
|
|
60
|
+
"noChargeItemsFound": "No charge items found",
|
|
61
|
+
"noData": "No data to display",
|
|
62
|
+
"noModulesFound": "No modules found matching '{{searchTerm}}'",
|
|
63
|
+
"noPaymentModesFound": "No payment modes found",
|
|
64
|
+
"noPaymentPointsFound": "No payment points found",
|
|
65
|
+
"noQueueRoomsFound": "No queue rooms found",
|
|
66
|
+
"noQueuesFound": "No queues found",
|
|
67
|
+
"noSearchResults": "",
|
|
68
|
+
"officialWebsite": "Official Website:",
|
|
69
|
+
"paymentMethodDescription": "Payment method {{methodName}}",
|
|
70
|
+
"paymentModes": "Payment Modes",
|
|
71
|
+
"paymentModesTable": "Payment modes table",
|
|
72
|
+
"paymentModeWorkspace": "Payment Mode",
|
|
73
|
+
"paymentPoints": "Payment points",
|
|
74
|
+
"paymentPointsTable": "Payment points table",
|
|
75
|
+
"paymentPointWorkspace": "Payment Point",
|
|
76
|
+
"paymentsMode": "Payment modes",
|
|
77
|
+
"previousPage": "Previous page",
|
|
78
|
+
"price": "Price",
|
|
79
|
+
"queue": "Queue",
|
|
80
|
+
"queueRooms": "Queue Rooms",
|
|
81
|
+
"queues": "Queues",
|
|
82
|
+
"regExp": "Regular expression",
|
|
83
|
+
"remove": "Remove",
|
|
84
|
+
"retired": "Retired",
|
|
85
|
+
"search": "Search location",
|
|
86
|
+
"searchForCommodity": "Search for commodity",
|
|
87
|
+
"searchForConcept": "Search for concept",
|
|
88
|
+
"searchLocationWorkspace": "Search Location",
|
|
89
|
+
"searchModules": "Search modules...",
|
|
90
|
+
"searchNoResults": "Found no matching results",
|
|
91
|
+
"searchNoResultsHelper": "Try searching for a different term",
|
|
92
|
+
"selectAttributeFormat": "Select attribute format",
|
|
93
|
+
"selectPaymentMode": "Select payment mode",
|
|
94
|
+
"service": "Service",
|
|
95
|
+
"serviceConcept": "Service Concept",
|
|
96
|
+
"showingModules_one": "Showing {{count}} of {{total}} modules",
|
|
97
|
+
"showingModules_two": "Showing {{count}} of {{total}} modules",
|
|
98
|
+
"showingModules_other": "Showing {{count}} of {{total}} modules",
|
|
99
|
+
"status": "Status",
|
|
100
|
+
"stockItem": "Stock Item",
|
|
101
|
+
"stockItemError": "Stock Item",
|
|
102
|
+
"supportContact": "For support, please contact us at",
|
|
103
|
+
"SystemInformation": "System Information",
|
|
104
|
+
"tagLocation": "Tag Location",
|
|
105
|
+
"tags": "Tags",
|
|
106
|
+
"telephoneSupport": "Telephone Support:",
|
|
107
|
+
"tryDifferentSearch": "Try a different search term",
|
|
108
|
+
"type": "Type",
|
|
109
|
+
"updateAvailable": "Update available: v{{version}}",
|
|
110
|
+
"upToDate": "Up to date",
|
|
111
|
+
"yes": "Yes"
|
|
112
|
+
}
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
{
|
|
2
|
+
"AboutDigiHMIS": "Made with ❤️ by the DigiHMIS Team",
|
|
3
|
+
"actions": "Actions",
|
|
4
|
+
"addChargeItem": "Add Charge Item",
|
|
5
|
+
"addChargeService": "Add Charge Service",
|
|
6
|
+
"addCommodityItem": "Add Commodity Item",
|
|
7
|
+
"addLocation": "Add Location",
|
|
8
|
+
"addNewLocationWorkspace": "Add new location",
|
|
9
|
+
"addNewQueueService": "Add New Queue Service",
|
|
10
|
+
"addNewQueueServiceRoom": "Add new queue service room",
|
|
11
|
+
"addPaymentMode": "Add Payment Mode",
|
|
12
|
+
"addPaymentPoint": "Add Payment Point",
|
|
13
|
+
"addQueue": "Add Queue",
|
|
14
|
+
"addQueueRoom": "Add Queue Room",
|
|
15
|
+
"addServiceItem": "Add Charge Service",
|
|
16
|
+
"aheadOfPublishedVersion": "Ahead of published version",
|
|
17
|
+
"attributeDescription": "Attribute description",
|
|
18
|
+
"attributeEnabled": "Attribute enabled",
|
|
19
|
+
"attributeFormat": "Attribute format",
|
|
20
|
+
"attributeFormatHelperText": "The format of the attribute value e.g Free text, Number",
|
|
21
|
+
"attributeName": "Attribute name",
|
|
22
|
+
"attributeRequired": "Attribute required",
|
|
23
|
+
"attributeRetiredReason": "Attribute retired reason",
|
|
24
|
+
"billableServices": "Billable services",
|
|
25
|
+
"BuildDateTime": "Build date time",
|
|
26
|
+
"chargeItems": "Charge Items",
|
|
27
|
+
"chargeItemsTable": "Charge items table",
|
|
28
|
+
"checkFilters": "Please check the filters above and try again",
|
|
29
|
+
"checkForUpdates": "Check for updates",
|
|
30
|
+
"clear": "Clear",
|
|
31
|
+
"clearSearch": "Clear search",
|
|
32
|
+
"configureBed": "Configure bed allocation, availability, and assignments",
|
|
33
|
+
"configureBilling": "Configure billing and payment processes",
|
|
34
|
+
"configureForms": "Create, edit, and manage clinical forms",
|
|
35
|
+
"dateCreated": "Date Created",
|
|
36
|
+
"delete": "Delete",
|
|
37
|
+
"description": "Description",
|
|
38
|
+
"disabled": "Disabled",
|
|
39
|
+
"edit": "Edit",
|
|
40
|
+
"editChargeItem": "Edit Charge Item",
|
|
41
|
+
"editPaymentMode": "Edit Payment Mode",
|
|
42
|
+
"editPaymentPoint": "Edit Payment Point",
|
|
43
|
+
"editServiceChargeItem": "Edit Service Charge Item",
|
|
44
|
+
"enabled": "Enabled",
|
|
45
|
+
"enterAttributeDescription": "Enter attribute description",
|
|
46
|
+
"enterAttributeName": "Enter attribute name",
|
|
47
|
+
"enterAttributeRetiredReason": "Enter attribute retired reason",
|
|
48
|
+
"enterPrice": "Enter price",
|
|
49
|
+
"enterRegExp": "Enter regular expression",
|
|
50
|
+
"loading": "Loading...",
|
|
51
|
+
"loadingData": "Loading data...",
|
|
52
|
+
"location": "Location",
|
|
53
|
+
"locationName": "Location Name",
|
|
54
|
+
"locations": "Locations",
|
|
55
|
+
"manageLocations": "Manage locations and tags",
|
|
56
|
+
"manageQueues": "Manage patient queues and facility rooms",
|
|
57
|
+
"name": "Name",
|
|
58
|
+
"nextPage": "Next page",
|
|
59
|
+
"no": "No",
|
|
60
|
+
"noChargeItemsFound": "No charge items found",
|
|
61
|
+
"noData": "No data to display",
|
|
62
|
+
"noModulesFound": "No modules found matching '{{searchTerm}}'",
|
|
63
|
+
"noPaymentModesFound": "No payment modes found",
|
|
64
|
+
"noPaymentPointsFound": "No payment points found",
|
|
65
|
+
"noQueueRoomsFound": "No queue rooms found",
|
|
66
|
+
"noQueuesFound": "No queues found",
|
|
67
|
+
"noSearchResults": "",
|
|
68
|
+
"officialWebsite": "Official Website:",
|
|
69
|
+
"paymentMethodDescription": "Payment method {{methodName}}",
|
|
70
|
+
"paymentModes": "Payment Modes",
|
|
71
|
+
"paymentModesTable": "Payment modes table",
|
|
72
|
+
"paymentModeWorkspace": "Payment Mode",
|
|
73
|
+
"paymentPoints": "Payment points",
|
|
74
|
+
"paymentPointsTable": "Payment points table",
|
|
75
|
+
"paymentPointWorkspace": "Payment Point",
|
|
76
|
+
"paymentsMode": "Payment modes",
|
|
77
|
+
"previousPage": "Previous page",
|
|
78
|
+
"price": "Price",
|
|
79
|
+
"queue": "Queue",
|
|
80
|
+
"queueRooms": "Queue Rooms",
|
|
81
|
+
"queues": "Queues",
|
|
82
|
+
"regExp": "Regular expression",
|
|
83
|
+
"remove": "Remove",
|
|
84
|
+
"retired": "Retired",
|
|
85
|
+
"search": "Search location",
|
|
86
|
+
"searchForCommodity": "Search for commodity",
|
|
87
|
+
"searchForConcept": "Search for concept",
|
|
88
|
+
"searchLocationWorkspace": "Search Location",
|
|
89
|
+
"searchModules": "Search modules...",
|
|
90
|
+
"searchNoResults": "Found no matching results",
|
|
91
|
+
"searchNoResultsHelper": "Try searching for a different term",
|
|
92
|
+
"selectAttributeFormat": "Select attribute format",
|
|
93
|
+
"selectPaymentMode": "Select payment mode",
|
|
94
|
+
"service": "Service",
|
|
95
|
+
"serviceConcept": "Service Concept",
|
|
96
|
+
"showingModules_other": "Showing {{count}} of {{total}} modules",
|
|
97
|
+
"status": "Status",
|
|
98
|
+
"stockItem": "Stock Item",
|
|
99
|
+
"stockItemError": "Stock Item",
|
|
100
|
+
"supportContact": "For support, please contact us at",
|
|
101
|
+
"SystemInformation": "System Information",
|
|
102
|
+
"tagLocation": "Tag Location",
|
|
103
|
+
"tags": "Tags",
|
|
104
|
+
"telephoneSupport": "Telephone Support:",
|
|
105
|
+
"tryDifferentSearch": "Try a different search term",
|
|
106
|
+
"type": "Type",
|
|
107
|
+
"updateAvailable": "Update available: v{{version}}",
|
|
108
|
+
"upToDate": "Up to date",
|
|
109
|
+
"yes": "Yes"
|
|
110
|
+
}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
{
|
|
2
|
+
"AboutDigiHMIS": "Made with ❤️ by the DigiHMIS Team",
|
|
3
|
+
"actions": "Actions",
|
|
4
|
+
"addChargeItem": "Add Charge Item",
|
|
5
|
+
"addChargeService": "Add Charge Service",
|
|
6
|
+
"addCommodityItem": "Add Commodity Item",
|
|
7
|
+
"addLocation": "Add Location",
|
|
8
|
+
"addNewLocationWorkspace": "Add new location",
|
|
9
|
+
"addNewQueueService": "Add New Queue Service",
|
|
10
|
+
"addNewQueueServiceRoom": "Add new queue service room",
|
|
11
|
+
"addPaymentMode": "Add Payment Mode",
|
|
12
|
+
"addPaymentPoint": "Add Payment Point",
|
|
13
|
+
"addQueue": "Add Queue",
|
|
14
|
+
"addQueueRoom": "Add Queue Room",
|
|
15
|
+
"addServiceItem": "Add Charge Service",
|
|
16
|
+
"aheadOfPublishedVersion": "Ahead of published version",
|
|
17
|
+
"attributeDescription": "Attribute description",
|
|
18
|
+
"attributeEnabled": "Attribute enabled",
|
|
19
|
+
"attributeFormat": "Attribute format",
|
|
20
|
+
"attributeFormatHelperText": "The format of the attribute value e.g Free text, Number",
|
|
21
|
+
"attributeName": "Attribute name",
|
|
22
|
+
"attributeRequired": "Attribute required",
|
|
23
|
+
"attributeRetiredReason": "Attribute retired reason",
|
|
24
|
+
"billableServices": "Billable services",
|
|
25
|
+
"BuildDateTime": "Build date time",
|
|
26
|
+
"chargeItems": "Charge Items",
|
|
27
|
+
"chargeItemsTable": "Charge items table",
|
|
28
|
+
"checkFilters": "Please check the filters above and try again",
|
|
29
|
+
"checkForUpdates": "Check for updates",
|
|
30
|
+
"clear": "Clear",
|
|
31
|
+
"clearSearch": "Clear search",
|
|
32
|
+
"configureBed": "Configure bed allocation, availability, and assignments",
|
|
33
|
+
"configureBilling": "Configure billing and payment processes",
|
|
34
|
+
"configureForms": "Create, edit, and manage clinical forms",
|
|
35
|
+
"dateCreated": "Date Created",
|
|
36
|
+
"delete": "Delete",
|
|
37
|
+
"description": "Description",
|
|
38
|
+
"disabled": "Disabled",
|
|
39
|
+
"edit": "Edit",
|
|
40
|
+
"editChargeItem": "Edit Charge Item",
|
|
41
|
+
"editPaymentMode": "Edit Payment Mode",
|
|
42
|
+
"editPaymentPoint": "Edit Payment Point",
|
|
43
|
+
"editServiceChargeItem": "Edit Service Charge Item",
|
|
44
|
+
"enabled": "Enabled",
|
|
45
|
+
"enterAttributeDescription": "Enter attribute description",
|
|
46
|
+
"enterAttributeName": "Enter attribute name",
|
|
47
|
+
"enterAttributeRetiredReason": "Enter attribute retired reason",
|
|
48
|
+
"enterPrice": "Enter price",
|
|
49
|
+
"enterRegExp": "Enter regular expression",
|
|
50
|
+
"loading": "Loading...",
|
|
51
|
+
"loadingData": "Loading data...",
|
|
52
|
+
"location": "Location",
|
|
53
|
+
"locationName": "Location Name",
|
|
54
|
+
"locations": "Locations",
|
|
55
|
+
"manageLocations": "Manage locations and tags",
|
|
56
|
+
"manageQueues": "Manage patient queues and facility rooms",
|
|
57
|
+
"name": "Name",
|
|
58
|
+
"nextPage": "Next page",
|
|
59
|
+
"no": "No",
|
|
60
|
+
"noChargeItemsFound": "No charge items found",
|
|
61
|
+
"noData": "No data to display",
|
|
62
|
+
"noModulesFound": "No modules found matching '{{searchTerm}}'",
|
|
63
|
+
"noPaymentModesFound": "No payment modes found",
|
|
64
|
+
"noPaymentPointsFound": "No payment points found",
|
|
65
|
+
"noQueueRoomsFound": "No queue rooms found",
|
|
66
|
+
"noQueuesFound": "No queues found",
|
|
67
|
+
"noSearchResults": "",
|
|
68
|
+
"officialWebsite": "Official Website:",
|
|
69
|
+
"paymentMethodDescription": "Payment method {{methodName}}",
|
|
70
|
+
"paymentModes": "Payment Modes",
|
|
71
|
+
"paymentModesTable": "Payment modes table",
|
|
72
|
+
"paymentModeWorkspace": "Payment Mode",
|
|
73
|
+
"paymentPoints": "Payment points",
|
|
74
|
+
"paymentPointsTable": "Payment points table",
|
|
75
|
+
"paymentPointWorkspace": "Payment Point",
|
|
76
|
+
"paymentsMode": "Payment modes",
|
|
77
|
+
"previousPage": "Previous page",
|
|
78
|
+
"price": "Price",
|
|
79
|
+
"queue": "Queue",
|
|
80
|
+
"queueRooms": "Queue Rooms",
|
|
81
|
+
"queues": "Queues",
|
|
82
|
+
"regExp": "Regular expression",
|
|
83
|
+
"remove": "Remove",
|
|
84
|
+
"retired": "Retired",
|
|
85
|
+
"search": "Search location",
|
|
86
|
+
"searchForCommodity": "Search for commodity",
|
|
87
|
+
"searchForConcept": "Search for concept",
|
|
88
|
+
"searchLocationWorkspace": "Search Location",
|
|
89
|
+
"searchModules": "Search modules...",
|
|
90
|
+
"searchNoResults": "Found no matching results",
|
|
91
|
+
"searchNoResultsHelper": "Try searching for a different term",
|
|
92
|
+
"selectAttributeFormat": "Select attribute format",
|
|
93
|
+
"selectPaymentMode": "Select payment mode",
|
|
94
|
+
"service": "Service",
|
|
95
|
+
"serviceConcept": "Service Concept",
|
|
96
|
+
"showingModules_one": "Showing {{count}} of {{total}} modules",
|
|
97
|
+
"showingModules_many": "Showing {{count}} of {{total}} modules",
|
|
98
|
+
"showingModules_other": "Showing {{count}} of {{total}} modules",
|
|
99
|
+
"status": "Status",
|
|
100
|
+
"stockItem": "Stock Item",
|
|
101
|
+
"stockItemError": "Stock Item",
|
|
102
|
+
"supportContact": "For support, please contact us at",
|
|
103
|
+
"SystemInformation": "System Information",
|
|
104
|
+
"tagLocation": "Tag Location",
|
|
105
|
+
"tags": "Tags",
|
|
106
|
+
"telephoneSupport": "Telephone Support:",
|
|
107
|
+
"tryDifferentSearch": "Try a different search term",
|
|
108
|
+
"type": "Type",
|
|
109
|
+
"updateAvailable": "Update available: v{{version}}",
|
|
110
|
+
"upToDate": "Up to date",
|
|
111
|
+
"yes": "Yes"
|
|
112
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
{
|
|
2
|
+
"AboutDigiHMIS": "Made with ❤️ by the DigiHMIS Team",
|
|
3
|
+
"actions": "Actions",
|
|
4
|
+
"addChargeItem": "Add Charge Item",
|
|
5
|
+
"addChargeService": "Add Charge Service",
|
|
6
|
+
"addCommodityItem": "Add Commodity Item",
|
|
7
|
+
"addLocation": "Add Location",
|
|
8
|
+
"addNewLocationWorkspace": "Add new location",
|
|
9
|
+
"addNewQueueService": "Add New Queue Service",
|
|
10
|
+
"addNewQueueServiceRoom": "Add new queue service room",
|
|
11
|
+
"addPaymentMode": "Add Payment Mode",
|
|
12
|
+
"addPaymentPoint": "Add Payment Point",
|
|
13
|
+
"addQueue": "Add Queue",
|
|
14
|
+
"addQueueRoom": "Add Queue Room",
|
|
15
|
+
"addServiceItem": "Add Charge Service",
|
|
16
|
+
"aheadOfPublishedVersion": "Ahead of published version",
|
|
17
|
+
"attributeDescription": "Attribute description",
|
|
18
|
+
"attributeEnabled": "Attribute enabled",
|
|
19
|
+
"attributeFormat": "Attribute format",
|
|
20
|
+
"attributeFormatHelperText": "The format of the attribute value e.g Free text, Number",
|
|
21
|
+
"attributeName": "Attribute name",
|
|
22
|
+
"attributeRequired": "Attribute required",
|
|
23
|
+
"attributeRetiredReason": "Attribute retired reason",
|
|
24
|
+
"billableServices": "Billable services",
|
|
25
|
+
"BuildDateTime": "Build date time",
|
|
26
|
+
"chargeItems": "Charge Items",
|
|
27
|
+
"chargeItemsTable": "Charge items table",
|
|
28
|
+
"checkFilters": "Please check the filters above and try again",
|
|
29
|
+
"checkForUpdates": "Check for updates",
|
|
30
|
+
"clear": "Clear",
|
|
31
|
+
"clearSearch": "Clear search",
|
|
32
|
+
"configureBed": "Configure wards",
|
|
33
|
+
"configureBilling": "Configure billing",
|
|
34
|
+
"configureForms": "Manage clinical forms",
|
|
35
|
+
"dateCreated": "Date Created",
|
|
36
|
+
"delete": "Delete",
|
|
37
|
+
"description": "Description",
|
|
38
|
+
"disabled": "Disabled",
|
|
39
|
+
"edit": "Edit",
|
|
40
|
+
"editChargeItem": "Edit Charge Item",
|
|
41
|
+
"editPaymentMode": "Edit Payment Mode",
|
|
42
|
+
"editPaymentPoint": "Edit Payment Point",
|
|
43
|
+
"editServiceChargeItem": "Edit Service Charge Item",
|
|
44
|
+
"enabled": "Enabled",
|
|
45
|
+
"enterAttributeDescription": "Enter attribute description",
|
|
46
|
+
"enterAttributeName": "Enter attribute name",
|
|
47
|
+
"enterAttributeRetiredReason": "Enter attribute retired reason",
|
|
48
|
+
"enterPrice": "Enter price",
|
|
49
|
+
"enterRegExp": "Enter regular expression",
|
|
50
|
+
"loading": "Loading...",
|
|
51
|
+
"loadingData": "Loading data...",
|
|
52
|
+
"location": "Location",
|
|
53
|
+
"locationName": "Location Name",
|
|
54
|
+
"locations": "Locations",
|
|
55
|
+
"manageLocations": "Manage locations and tags",
|
|
56
|
+
"manageQueues": "Manage queues and rooms",
|
|
57
|
+
"name": "Name",
|
|
58
|
+
"nextPage": "Next page",
|
|
59
|
+
"no": "No",
|
|
60
|
+
"noChargeItemsFound": "No charge items found",
|
|
61
|
+
"noData": "No data to display",
|
|
62
|
+
"noModulesFound": "No modules found matching '{{searchTerm}}'",
|
|
63
|
+
"noPaymentModesFound": "No payment modes found",
|
|
64
|
+
"noPaymentPointsFound": "No payment points found",
|
|
65
|
+
"noQueueRoomsFound": "No queue rooms found",
|
|
66
|
+
"noQueuesFound": "No queues found",
|
|
67
|
+
"noSearchResults": "",
|
|
68
|
+
"officialWebsite": "Official Website:",
|
|
69
|
+
"paymentMethodDescription": "Payment method {{methodName}}",
|
|
70
|
+
"paymentModes": "Payment Modes",
|
|
71
|
+
"paymentModesTable": "Payment modes table",
|
|
72
|
+
"paymentModeWorkspace": "Payment Mode",
|
|
73
|
+
"paymentPoints": "Payment points",
|
|
74
|
+
"paymentPointsTable": "Payment points table",
|
|
75
|
+
"paymentPointWorkspace": "Payment Point",
|
|
76
|
+
"paymentsMode": "Payment modes",
|
|
77
|
+
"previousPage": "Previous page",
|
|
78
|
+
"price": "Price",
|
|
79
|
+
"queue": "Queue",
|
|
80
|
+
"queueRooms": "Queue Rooms",
|
|
81
|
+
"queues": "Queues",
|
|
82
|
+
"regExp": "Regular expression",
|
|
83
|
+
"remove": "Remove",
|
|
84
|
+
"retired": "Retired",
|
|
85
|
+
"search": "Search location",
|
|
86
|
+
"searchForCommodity": "Search for commodity",
|
|
87
|
+
"searchForConcept": "Search for concept",
|
|
88
|
+
"searchLocationWorkspace": "Search Location",
|
|
89
|
+
"searchModules": "Search modules...",
|
|
90
|
+
"searchNoResults": "Found no matching results",
|
|
91
|
+
"searchNoResultsHelper": "Try searching for a different term",
|
|
92
|
+
"selectAttributeFormat": "Select attribute format",
|
|
93
|
+
"selectPaymentMode": "Select payment mode",
|
|
94
|
+
"service": "Service",
|
|
95
|
+
"serviceConcept": "Service Concept",
|
|
96
|
+
"showingModules_one": "Showing {{count}} of {{total}} modules",
|
|
97
|
+
"showingModules_other": "Showing {{count}} of {{total}} modules",
|
|
98
|
+
"status": "Status",
|
|
99
|
+
"stockItem": "Stock Item",
|
|
100
|
+
"stockItemError": "Stock Item",
|
|
101
|
+
"supportContact": "For support, please contact us at",
|
|
102
|
+
"SystemInformation": "System Information",
|
|
103
|
+
"tagLocation": "Tag Location",
|
|
104
|
+
"tags": "Tags",
|
|
105
|
+
"telephoneSupport": "Telephone Support:",
|
|
106
|
+
"tryDifferentSearch": "Try a different search term",
|
|
107
|
+
"type": "Type",
|
|
108
|
+
"updateAvailable": "Update available: v{{version}}",
|
|
109
|
+
"upToDate": "Up to date",
|
|
110
|
+
"yes": "Yes"
|
|
111
|
+
}
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
{
|
|
2
|
+
"AboutDigiHMIS": "Made with ❤️ by the DigiHMIS Team",
|
|
3
|
+
"actions": "Actions",
|
|
4
|
+
"addChargeItem": "Add Charge Item",
|
|
5
|
+
"addChargeService": "Add Charge Service",
|
|
6
|
+
"addCommodityItem": "Add Commodity Item",
|
|
7
|
+
"addLocation": "Add Location",
|
|
8
|
+
"addNewLocationWorkspace": "Add new location",
|
|
9
|
+
"addNewQueueService": "Add New Queue Service",
|
|
10
|
+
"addNewQueueServiceRoom": "Add new queue service room",
|
|
11
|
+
"addPaymentMode": "Add Payment Mode",
|
|
12
|
+
"addPaymentPoint": "Add Payment Point",
|
|
13
|
+
"addQueue": "Add Queue",
|
|
14
|
+
"addQueueRoom": "Add Queue Room",
|
|
15
|
+
"addServiceItem": "Add Charge Service",
|
|
16
|
+
"aheadOfPublishedVersion": "Ahead of published version",
|
|
17
|
+
"attributeDescription": "Attribute description",
|
|
18
|
+
"attributeEnabled": "Attribute enabled",
|
|
19
|
+
"attributeFormat": "Attribute format",
|
|
20
|
+
"attributeFormatHelperText": "The format of the attribute value e.g Free text, Number",
|
|
21
|
+
"attributeName": "Attribute name",
|
|
22
|
+
"attributeRequired": "Attribute required",
|
|
23
|
+
"attributeRetiredReason": "Attribute retired reason",
|
|
24
|
+
"billableServices": "Billable services",
|
|
25
|
+
"BuildDateTime": "Build date time",
|
|
26
|
+
"chargeItems": "Charge Items",
|
|
27
|
+
"chargeItemsTable": "Charge items table",
|
|
28
|
+
"checkFilters": "Please check the filters above and try again",
|
|
29
|
+
"checkForUpdates": "Check for updates",
|
|
30
|
+
"clear": "Clear",
|
|
31
|
+
"clearSearch": "Clear search",
|
|
32
|
+
"configureBed": "Configure bed allocation, availability, and assignments",
|
|
33
|
+
"configureBilling": "Configure billing and payment processes",
|
|
34
|
+
"configureForms": "Create, edit, and manage clinical forms",
|
|
35
|
+
"dateCreated": "Date Created",
|
|
36
|
+
"delete": "Delete",
|
|
37
|
+
"description": "Description",
|
|
38
|
+
"disabled": "Disabled",
|
|
39
|
+
"edit": "Edit",
|
|
40
|
+
"editChargeItem": "Edit Charge Item",
|
|
41
|
+
"editPaymentMode": "Edit Payment Mode",
|
|
42
|
+
"editPaymentPoint": "Edit Payment Point",
|
|
43
|
+
"editServiceChargeItem": "Edit Service Charge Item",
|
|
44
|
+
"enabled": "Enabled",
|
|
45
|
+
"enterAttributeDescription": "Enter attribute description",
|
|
46
|
+
"enterAttributeName": "Enter attribute name",
|
|
47
|
+
"enterAttributeRetiredReason": "Enter attribute retired reason",
|
|
48
|
+
"enterPrice": "Enter price",
|
|
49
|
+
"enterRegExp": "Enter regular expression",
|
|
50
|
+
"loading": "Loading...",
|
|
51
|
+
"loadingData": "Loading data...",
|
|
52
|
+
"location": "Location",
|
|
53
|
+
"locationName": "Location Name",
|
|
54
|
+
"locations": "Locations",
|
|
55
|
+
"manageLocations": "Manage locations and tags",
|
|
56
|
+
"manageQueues": "Manage patient queues and facility rooms",
|
|
57
|
+
"name": "Name",
|
|
58
|
+
"nextPage": "Next page",
|
|
59
|
+
"no": "No",
|
|
60
|
+
"noChargeItemsFound": "No charge items found",
|
|
61
|
+
"noData": "No data to display",
|
|
62
|
+
"noModulesFound": "No modules found matching '{{searchTerm}}'",
|
|
63
|
+
"noPaymentModesFound": "No payment modes found",
|
|
64
|
+
"noPaymentPointsFound": "No payment points found",
|
|
65
|
+
"noQueueRoomsFound": "No queue rooms found",
|
|
66
|
+
"noQueuesFound": "No queues found",
|
|
67
|
+
"noSearchResults": "",
|
|
68
|
+
"officialWebsite": "Official Website:",
|
|
69
|
+
"paymentMethodDescription": "Payment method {{methodName}}",
|
|
70
|
+
"paymentModes": "Payment Modes",
|
|
71
|
+
"paymentModesTable": "Payment modes table",
|
|
72
|
+
"paymentModeWorkspace": "Payment Mode",
|
|
73
|
+
"paymentPoints": "Payment points",
|
|
74
|
+
"paymentPointsTable": "Payment points table",
|
|
75
|
+
"paymentPointWorkspace": "Payment Point",
|
|
76
|
+
"paymentsMode": "Payment modes",
|
|
77
|
+
"previousPage": "Previous page",
|
|
78
|
+
"price": "Price",
|
|
79
|
+
"queue": "Queue",
|
|
80
|
+
"queueRooms": "Queue Rooms",
|
|
81
|
+
"queues": "Queues",
|
|
82
|
+
"regExp": "Regular expression",
|
|
83
|
+
"remove": "Remove",
|
|
84
|
+
"retired": "Retired",
|
|
85
|
+
"search": "Search location",
|
|
86
|
+
"searchForCommodity": "Search for commodity",
|
|
87
|
+
"searchForConcept": "Search for concept",
|
|
88
|
+
"searchLocationWorkspace": "Search Location",
|
|
89
|
+
"searchModules": "Search modules...",
|
|
90
|
+
"searchNoResults": "Found no matching results",
|
|
91
|
+
"searchNoResultsHelper": "Try searching for a different term",
|
|
92
|
+
"selectAttributeFormat": "Select attribute format",
|
|
93
|
+
"selectPaymentMode": "Select payment mode",
|
|
94
|
+
"service": "Service",
|
|
95
|
+
"serviceConcept": "Service Concept",
|
|
96
|
+
"showingModules_other": "Showing {{count}} of {{total}} modules",
|
|
97
|
+
"status": "Status",
|
|
98
|
+
"stockItem": "Stock Item",
|
|
99
|
+
"stockItemError": "Stock Item",
|
|
100
|
+
"supportContact": "For support, please contact us at",
|
|
101
|
+
"SystemInformation": "System Information",
|
|
102
|
+
"tagLocation": "Tag Location",
|
|
103
|
+
"tags": "Tags",
|
|
104
|
+
"telephoneSupport": "Telephone Support:",
|
|
105
|
+
"tryDifferentSearch": "Try a different search term",
|
|
106
|
+
"type": "Type",
|
|
107
|
+
"updateAvailable": "Update available: v{{version}}",
|
|
108
|
+
"upToDate": "Up to date",
|
|
109
|
+
"yes": "Yes"
|
|
110
|
+
}
|