@kenyaemr/esm-appointments-app 7.0.2-pre.65

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 (181) hide show
  1. package/.turbo/turbo-build.log +42 -0
  2. package/dist/130.js +2 -0
  3. package/dist/130.js.LICENSE.txt +3 -0
  4. package/dist/130.js.map +1 -0
  5. package/dist/152.js +1 -0
  6. package/dist/152.js.map +1 -0
  7. package/dist/224.js +1 -0
  8. package/dist/224.js.map +1 -0
  9. package/dist/255.js +2 -0
  10. package/dist/255.js.LICENSE.txt +9 -0
  11. package/dist/255.js.map +1 -0
  12. package/dist/271.js +1 -0
  13. package/dist/303.js +1 -0
  14. package/dist/303.js.map +1 -0
  15. package/dist/309.js +1 -0
  16. package/dist/309.js.map +1 -0
  17. package/dist/319.js +1 -0
  18. package/dist/4.js +1 -0
  19. package/dist/4.js.map +1 -0
  20. package/dist/445.js +2 -0
  21. package/dist/445.js.LICENSE.txt +54 -0
  22. package/dist/445.js.map +1 -0
  23. package/dist/460.js +1 -0
  24. package/dist/501.js +1 -0
  25. package/dist/501.js.map +1 -0
  26. package/dist/574.js +1 -0
  27. package/dist/591.js +2 -0
  28. package/dist/591.js.LICENSE.txt +32 -0
  29. package/dist/591.js.map +1 -0
  30. package/dist/644.js +1 -0
  31. package/dist/729.js +1 -0
  32. package/dist/729.js.map +1 -0
  33. package/dist/757.js +1 -0
  34. package/dist/784.js +2 -0
  35. package/dist/784.js.LICENSE.txt +9 -0
  36. package/dist/784.js.map +1 -0
  37. package/dist/788.js +1 -0
  38. package/dist/807.js +1 -0
  39. package/dist/833.js +1 -0
  40. package/dist/857.js +2 -0
  41. package/dist/857.js.LICENSE.txt +5 -0
  42. package/dist/857.js.map +1 -0
  43. package/dist/904.js +1 -0
  44. package/dist/904.js.map +1 -0
  45. package/dist/kenyaemr-esm-appointments-app.js +1 -0
  46. package/dist/kenyaemr-esm-appointments-app.js.buildmanifest.json +699 -0
  47. package/dist/kenyaemr-esm-appointments-app.js.map +1 -0
  48. package/dist/main.js +2 -0
  49. package/dist/main.js.LICENSE.txt +64 -0
  50. package/dist/main.js.map +1 -0
  51. package/dist/routes.json +1 -0
  52. package/jest.config.js +3 -0
  53. package/package.json +57 -0
  54. package/src/admin/appointment-services/appointment-services-hook.ts +31 -0
  55. package/src/admin/appointment-services/appointment-services-validation.ts +17 -0
  56. package/src/admin/appointment-services/appointment-services.component.tsx +182 -0
  57. package/src/admin/appointment-services/appointment-services.scss +25 -0
  58. package/src/appointments/appointment-tabs.component.tsx +48 -0
  59. package/src/appointments/appointment-tabs.scss +53 -0
  60. package/src/appointments/appointment-tabs.test.tsx +55 -0
  61. package/src/appointments/common-components/appointments-actions.component.tsx +86 -0
  62. package/src/appointments/common-components/appointments-actions.scss +4 -0
  63. package/src/appointments/common-components/appointments-actions.test.tsx +201 -0
  64. package/src/appointments/common-components/appointments-table.component.tsx +277 -0
  65. package/src/appointments/common-components/appointments-table.scss +133 -0
  66. package/src/appointments/common-components/appointments-table.test.tsx +134 -0
  67. package/src/appointments/common-components/checkin-button.component.tsx +43 -0
  68. package/src/appointments/common-components/end-appointment-modal.component.tsx +104 -0
  69. package/src/appointments/common-components/end-appointment-modal.test.tsx +80 -0
  70. package/src/appointments/common-components/location-select-option.component.tsx +48 -0
  71. package/src/appointments/details/appointment-details.component.tsx +91 -0
  72. package/src/appointments/details/appointment-details.scss +81 -0
  73. package/src/appointments/details/appointment-details.test.tsx +103 -0
  74. package/src/appointments/scheduled/appointments-list.component.tsx +33 -0
  75. package/src/appointments/scheduled/early-appointments.component.tsx +32 -0
  76. package/src/appointments/scheduled/scheduled-appointments.component.tsx +215 -0
  77. package/src/appointments/scheduled/scheduled-appointments.scss +4 -0
  78. package/src/appointments/unscheduled/unscheduled-appointments.component.tsx +146 -0
  79. package/src/appointments/unscheduled/unscheduled-appointments.test.tsx +131 -0
  80. package/src/appointments/utils.tsx +80 -0
  81. package/src/appointments.component.tsx +44 -0
  82. package/src/appointments.test.tsx +15 -0
  83. package/src/calendar/appointments-calendar-view-view.scss +24 -0
  84. package/src/calendar/appointments-calendar-view.component.tsx +36 -0
  85. package/src/calendar/appointments-calendar-view.test.tsx +22 -0
  86. package/src/calendar/header/calendar-header.component.tsx +34 -0
  87. package/src/calendar/header/calendar-header.scss +32 -0
  88. package/src/calendar/monthly/days-of-week.component.tsx +16 -0
  89. package/src/calendar/monthly/days-of-week.scss +33 -0
  90. package/src/calendar/monthly/monthly-calendar-view.component.tsx +34 -0
  91. package/src/calendar/monthly/monthly-header.module.scss +14 -0
  92. package/src/calendar/monthly/monthly-header.module.tsx +40 -0
  93. package/src/calendar/monthly/monthly-view-workload.scss +188 -0
  94. package/src/calendar/monthly/monthly-workload-view-expanded.component.tsx +42 -0
  95. package/src/calendar/monthly/monthly-workload-view.component.tsx +109 -0
  96. package/src/config-schema.ts +151 -0
  97. package/src/constants.ts +55 -0
  98. package/src/createDashboardLink.component.tsx +39 -0
  99. package/src/dashboard.meta.ts +21 -0
  100. package/src/declarations.d.ts +4 -0
  101. package/src/empty-state/empty-data-illustration.component.tsx +39 -0
  102. package/src/empty-state/empty-state.component.tsx +32 -0
  103. package/src/empty-state/empty-state.scss +69 -0
  104. package/src/form/appointments-form.component.tsx +891 -0
  105. package/src/form/appointments-form.resource.ts +165 -0
  106. package/src/form/appointments-form.scss +113 -0
  107. package/src/form/appointments-form.test.tsx +212 -0
  108. package/src/header/appointments-header.component.tsx +79 -0
  109. package/src/header/appointments-header.scss +95 -0
  110. package/src/header/appointments-illustration.component.tsx +22 -0
  111. package/src/helpers/excel.ts +61 -0
  112. package/src/helpers/functions.ts +82 -0
  113. package/src/helpers/index.ts +2 -0
  114. package/src/helpers/time.tsx +15 -0
  115. package/src/home/home-appointments.component.tsx +22 -0
  116. package/src/home/home-appointments.scss +10 -0
  117. package/src/hooks/patientAppointmentContext.ts +15 -0
  118. package/src/hooks/selectedDateContext.ts +10 -0
  119. package/src/hooks/useAppointmentList.ts +48 -0
  120. package/src/hooks/useAppointmentService.ts +11 -0
  121. package/src/hooks/useAppointmentsCalendar.ts +68 -0
  122. package/src/hooks/useClinicalMetrics.ts +79 -0
  123. package/src/hooks/useDefaultLocation.ts +14 -0
  124. package/src/hooks/useOverlay.tsx +45 -0
  125. package/src/hooks/usePatientAppointmentHistory.ts +49 -0
  126. package/src/hooks/useProviders.ts +18 -0
  127. package/src/hooks/useTodaysVisits.ts +19 -0
  128. package/src/hooks/useUnscheduledAppointments.ts +45 -0
  129. package/src/index.ts +111 -0
  130. package/src/metrics/appointments-metrics.component.tsx +71 -0
  131. package/src/metrics/appointments-metrics.scss +15 -0
  132. package/src/metrics/appointments-metrics.test.tsx +49 -0
  133. package/src/metrics/metrics-card.component.tsx +76 -0
  134. package/src/metrics/metrics-card.scss +77 -0
  135. package/src/metrics/metrics-header.component.tsx +62 -0
  136. package/src/metrics/metrics-header.scss +33 -0
  137. package/src/past-visit/encounter-list.component.tsx +54 -0
  138. package/src/past-visit/past-visit.component.tsx +106 -0
  139. package/src/past-visit/past-visit.resource.ts +25 -0
  140. package/src/past-visit/past-visit.scss +106 -0
  141. package/src/patient-appointments/patient-appointments-action-menu.component.tsx +65 -0
  142. package/src/patient-appointments/patient-appointments-action-menu.scss +7 -0
  143. package/src/patient-appointments/patient-appointments-base.component.tsx +165 -0
  144. package/src/patient-appointments/patient-appointments-base.scss +85 -0
  145. package/src/patient-appointments/patient-appointments-base.test.tsx +91 -0
  146. package/src/patient-appointments/patient-appointments-cancel-modal.component.tsx +66 -0
  147. package/src/patient-appointments/patient-appointments-detailed-summary.component.tsx +15 -0
  148. package/src/patient-appointments/patient-appointments-header.scss +27 -0
  149. package/src/patient-appointments/patient-appointments-header.tsx +42 -0
  150. package/src/patient-appointments/patient-appointments-overview.component.tsx +35 -0
  151. package/src/patient-appointments/patient-appointments-overview.scss +7 -0
  152. package/src/patient-appointments/patient-appointments-table.scss +0 -0
  153. package/src/patient-appointments/patient-appointments-table.tsx +128 -0
  154. package/src/patient-appointments/patient-appointments.resource.ts +72 -0
  155. package/src/patient-appointments/patient-upcoming-appointments-card.component.tsx +122 -0
  156. package/src/patient-appointments/patient-upcoming-appointments-card.scss +46 -0
  157. package/src/patient-search/patient-search.component.tsx +34 -0
  158. package/src/patient-search/patient-search.scss +23 -0
  159. package/src/root.component.tsx +26 -0
  160. package/src/root.scss +50 -0
  161. package/src/routes.json +153 -0
  162. package/src/scheduled-appointments-config-schema.ts +169 -0
  163. package/src/types/index.ts +189 -0
  164. package/src/workload/monthly-view-workload/monthly-view.component.tsx +69 -0
  165. package/src/workload/monthly-view-workload/monthly-workload.scss +223 -0
  166. package/src/workload/monthly-view-workload/monthlyWorkCard.tsx +45 -0
  167. package/src/workload/workload-card.component.tsx +31 -0
  168. package/src/workload/workload.component.tsx +47 -0
  169. package/src/workload/workload.resource.ts +78 -0
  170. package/src/workload/workload.scss +92 -0
  171. package/translations/am.json +148 -0
  172. package/translations/ar.json +148 -0
  173. package/translations/en.json +159 -0
  174. package/translations/es.json +148 -0
  175. package/translations/fr.json +148 -0
  176. package/translations/he.json +148 -0
  177. package/translations/km.json +148 -0
  178. package/translations/zh.json +148 -0
  179. package/translations/zh_CN.json +148 -0
  180. package/tsconfig.json +5 -0
  181. package/webpack.config.js +1 -0
@@ -0,0 +1,148 @@
1
+ {
2
+ "action": "الإجراء",
3
+ "actions": "الإجراءات",
4
+ "add": "إضافة",
5
+ "addAppointment": "Add Appointment",
6
+ "addPatientToQueue": "أضف المريض إلى الطابور",
7
+ "age": "العمر",
8
+ "all": "الكل",
9
+ "allDay": "All day",
10
+ "appointmentCancelError": "خطأ في إلغاء الموعد",
11
+ "appointmentCancelled": "تم إلغاء الموعد",
12
+ "appointmentCancelledSuccessfully": "تم إلغاء الموعد بنجاح",
13
+ "appointmentColor": "لون الموعد",
14
+ "appointmentEdited": "Appointment edited",
15
+ "appointmentEditError": "Error editing appointment",
16
+ "appointmentForm": "إنشاء موعد",
17
+ "appointmentFormError": "خطأ في جدولة الموعد",
18
+ "appointmentHistory": "تاريخ الموعد",
19
+ "appointmentMetrics": "مقاييس الموعد",
20
+ "appointmentMetricsLoadError": "",
21
+ "appointmentNoteLabel": "Write an additional note",
22
+ "appointmentNotePlaceholder": "Write any additional points here",
23
+ "appointmentNotes": "ملاحظات الموعد",
24
+ "appointmentNowVisible": "أصبح مرئيًا الآن في صفحة المواعيد",
25
+ "appointments": "موعد",
26
+ "appointmentsCalendar": "تقويم المواعيد",
27
+ "appointmentScheduled": "تم جدولة الموعد",
28
+ "appointmentService": "خدمة الموعد",
29
+ "appointmentServiceCreate": "تم إنشاء خدمة الموعد بنجاح",
30
+ "appointmentServiceName": "اسم خدمة الموعد",
31
+ "appointmentStatus": "Appointment status",
32
+ "appointmentToFulfill": "حدد الموعد/المواعيد لتنفيذه",
33
+ "appointmentType": "نوع الموعد",
34
+ "appointmentType_title": "نوع الموعد",
35
+ "back": "رجوع",
36
+ "calendar": "تقويم",
37
+ "cameEarly": "جاء مبكرًا",
38
+ "cancel": "إلغاء",
39
+ "cancelAppointment": "إلغاء الموعد",
40
+ "cancelAppointmentModalConfirmationText": "هل أنت متأكد أنك تريد إلغاء هذا الموعد؟",
41
+ "cancelled": "تم الإلغاء",
42
+ "checkedIn": "تم تسجيل الوصول",
43
+ "checkedOut": "تم تسجيل الخروج",
44
+ "checkIn": "تسجيل الوصول",
45
+ "checkOut": "تسجيل الخروج",
46
+ "chooseAppointmentType": "Choose appointment type",
47
+ "chooseLocation": "Choose a location",
48
+ "chooseProvider": "Choose a provider",
49
+ "chooseService": "اختر الخدمة",
50
+ "completed": "مكتمل",
51
+ "createAppointmentService": "إنشاء خدمة موعد",
52
+ "createNewAppointment": "إنشاء موعد جديد",
53
+ "date": "تاريخ",
54
+ "date&Time": "Date & time",
55
+ "dateAndTimeOfVisit": "تاريخ ووقت الزيارة",
56
+ "dateOfBirth": "Date of birth",
57
+ "dateTime": "Date & Time",
58
+ "day": "Day",
59
+ "daysOfWeek": "Days of the week",
60
+ "discard": "تجاهل",
61
+ "download": "تحميل",
62
+ "durationInMinutes": "Duration (minutes)",
63
+ "durationMins": "المدة بالدقائق",
64
+ "edit": "Edit",
65
+ "editAppointment": "تعديل الموعد",
66
+ "editAppointments": "تعديل الموعد",
67
+ "emptyStateText": "لا يوجد {{displayText}} للعرض",
68
+ "encounters": "اللقاءات",
69
+ "encounterType": "نوع اللقاء",
70
+ "endDate": "End date",
71
+ "endTime": "وقت الانتهاء",
72
+ "errorCreatingAppointmentService": "Error creating appointment service",
73
+ "expected": "Expected",
74
+ "gender": "الجنس",
75
+ "highestServiceVolume": "Highest volume service: {{time}}",
76
+ "home": "الرئيسية",
77
+ "identifier": "معرف",
78
+ "invalidNumber": "Number is not valid",
79
+ "invalidTime": "Invalid time",
80
+ "isRecurringAppointment": "Is this a recurring appointment?",
81
+ "loading": "Loading",
82
+ "location": "الموقع",
83
+ "medications": "الأدوية",
84
+ "missed": "فائت",
85
+ "missingVisitType": "نوع الزيارة مفقود",
86
+ "no": "لا",
87
+ "noContent": "No Content",
88
+ "noCurrentAppointments": "لا توجد مواعيد مجدولة لهذا المريض اليوم",
89
+ "noEncountersFound": "لم يتم العثور على لقاءات",
90
+ "noMatchingVisitTypeFound": "",
91
+ "noPastAppointments": "لا توجد مواعيد سابقة لعرضها لهذا المريض\"",
92
+ "noPreviousVisitFound": "لم يتم العثور على زيارة سابقة",
93
+ "notArrived": "لم يصل",
94
+ "note": "Note",
95
+ "notes": "ملاحظات",
96
+ "noUpcomingAppointments": "لم يتم العثور على مواعيد قادمة",
97
+ "noUpcomingAppointmentsForPatient": "لا توجد مواعيد قادمة لعرضها لهذا المريض",
98
+ "past": "الماضي",
99
+ "patientDetails": "تفاصيل المريض",
100
+ "patientName": "اسم المريض",
101
+ "patients": "المرضى",
102
+ "patientSearch": "بحث عن المريض",
103
+ "period": "Period",
104
+ "provider": "مقدم الخدمة",
105
+ "providers": "مقدمي الخدمة",
106
+ "providersBooked": "Providers booked: {{time}}",
107
+ "queueAddedSuccessfully": "",
108
+ "queueEntryError": "خطأ في إضافة المريض إلى الطابور",
109
+ "recurringAppointment": "Recurring Appointment",
110
+ "repeatEvery": "Repeat every",
111
+ "save": "حفظ",
112
+ "saveAndClose": "Save and close",
113
+ "scheduled": "مجدول",
114
+ "scheduledAppointments": "المواعيد المجدولة",
115
+ "search": "بحث",
116
+ "searchForAVisitType": "ابحث عن نوع الزيارة",
117
+ "selectAppointmentStatus": "اختر الحالة",
118
+ "selectAppointmentType": "اختر نوع الموعد",
119
+ "selectFacility": "اختر المنشأة",
120
+ "selectLocation": "اختر الموقع",
121
+ "selectOption": "اختر خيارًا",
122
+ "selectProvider": "Select a provider",
123
+ "selectService": "اختر الخدمة",
124
+ "selectServiceType": "اختر نوع الخدمة",
125
+ "selectVisitType": "يرجى اختيار نوع الزيارة",
126
+ "service": "خدمة",
127
+ "serviceName": "اسم الخدمة",
128
+ "serviceType": "نوع الخدمة",
129
+ "startDate": "Start date",
130
+ "startTime": "وقت البدء",
131
+ "startVisitError": "خطأ في بدء الزيارة",
132
+ "time": "الوقت",
133
+ "today": "اليوم",
134
+ "todays": "Today's",
135
+ "total": "المجموع",
136
+ "unscheduled": "غير مجدول",
137
+ "unscheduledAppointments": "المواعيد غير المجدولة",
138
+ "unscheduledAppointments_lower": "مواعيد غير مجدولة",
139
+ "upcoming": "القادمة",
140
+ "upcomingAppointments": "المواعيد القادمة",
141
+ "view": "عرض",
142
+ "visitLocation": "موقع الزيارة",
143
+ "visitStarted": "بدأت الزيارة",
144
+ "visitType": "نوع الزيارة",
145
+ "vitals": "العلامات الحيوية",
146
+ "week": "Week",
147
+ "yes": "نعم"
148
+ }
@@ -0,0 +1,159 @@
1
+ {
2
+ "action": "Action",
3
+ "actions": "Actions",
4
+ "add": "Add",
5
+ "age": "Age",
6
+ "allDay": "All day",
7
+ "appointmentCancelError": "Error cancelling appointment",
8
+ "appointmentCancelled": "Appointment Cancelled",
9
+ "appointmentCancelledSuccessfully": "Appointment cancelled successfully",
10
+ "appointmentColor": "Appointment color",
11
+ "appointmentConflict": "Appointment conflict",
12
+ "appointmentEdited": "Appointment edited",
13
+ "appointmentEditError": "Error editing appointment",
14
+ "appointmentEnded": "Appointment ended",
15
+ "appointmentEndedAndVisitClosedSuccessfully": "Appointment successfully ended and visit successfully closed.",
16
+ "appointmentEndedButVisitNotClosedError": "Appointment ended, but error closing visit",
17
+ "appointmentEndedSuccessfully": "Appointment successfully ended.",
18
+ "appointmentEndError": "Error ending appointment",
19
+ "appointmentFormError": "Error scheduling appointment",
20
+ "appointmentHistory": "Appointment History",
21
+ "appointmentMetrics": "Appointment metrics",
22
+ "appointmentMetricsLoadError": "",
23
+ "appointmentNoteLabel": "Write an additional note",
24
+ "appointmentNotePlaceholder": "Write any additional points here",
25
+ "appointmentNotes": "Appointment Notes",
26
+ "appointmentNowVisible": "It is now visible on the Appointments page",
27
+ "appointments": "Appointments",
28
+ "Appointments": "Appointments",
29
+ "appointments_lower": "appointments",
30
+ "appointmentsCalendar": "Appointments Calendar",
31
+ "appointmentScheduled": "Appointment scheduled",
32
+ "appointmentService": "Appointment service",
33
+ "appointmentServiceCreate": "Appointment service created successfully",
34
+ "appointmentServiceName": "Appointment service name",
35
+ "appointmentsScheduledForToday": "appointments scheduled for today",
36
+ "appointmentsTable": "Appointments table",
37
+ "appointmentStatus": "Appointment status",
38
+ "appointmentToFulfill": "Select appointment to fulfill",
39
+ "appointmentType": "Appointment type",
40
+ "appointmentType_title": "Appointment Type",
41
+ "back": "Back",
42
+ "calendar": "Calendar",
43
+ "cameEarly": "Came Early",
44
+ "cancel": "Cancel",
45
+ "cancelAppointment": "Cancel Appointment",
46
+ "cancelAppointmentModalConfirmationText": "Are you sure you want to cancel this appointment?",
47
+ "cancelled": "Cancelled",
48
+ "checkedIn": "Checked in",
49
+ "checkedOut": "Checked out",
50
+ "checkFilters": "Check the filters above",
51
+ "checkIn": "Check In",
52
+ "checkOut": "Check out",
53
+ "chooseAppointmentType": "Choose appointment type",
54
+ "chooseLocation": "Choose a location",
55
+ "chooseProvider": "Choose a provider",
56
+ "chooseService": "Select service",
57
+ "completed": "Completed",
58
+ "Contact": "Contact {{index}}",
59
+ "countMore_one": "{{count}} more",
60
+ "countMore_other": "{{count}} more",
61
+ "createAppointmentService": "Create appointment services",
62
+ "createNewAppointment": "Create new appointment",
63
+ "date": "Date",
64
+ "date&Time": "Date & time",
65
+ "dateOfBirth": "Date of birth",
66
+ "dateScheduled": "Date appointment issued",
67
+ "dateScheduledDetail": "Date appointment issued",
68
+ "dateTime": "Date & Time",
69
+ "day": "Day",
70
+ "daysOfWeek": "Days of the week",
71
+ "discard": "Discard",
72
+ "download": "Download",
73
+ "durationErrorMessage": "Duration should be greater than zero",
74
+ "durationInMinutes": "Duration (minutes)",
75
+ "durationMins": "Duration min",
76
+ "edit": "Edit",
77
+ "editAppointment": "Edit Appointment",
78
+ "editAppointments": "Edit Appointment",
79
+ "emptyStateText": "There are no <1>{{displayText}}</1> to display",
80
+ "encounters": "Encounters",
81
+ "encounterType": "Encounter type",
82
+ "endAppointmentAndVisitConfirmationMessage": "Checking the patient out will mark the appointment as complete, and close out the active visit for this patient.",
83
+ "endAppointmentConfirmation": "Are you sure you want to check the patient out for this appointment?",
84
+ "endAppointmentConfirmationMessage": "Checking the patient out will mark the appointment as complete.",
85
+ "endDate": "End date",
86
+ "endTime": "End Time",
87
+ "errorCreatingAppointmentService": "Error creating appointment service",
88
+ "expected": "Expected",
89
+ "filterTable": "Filter table",
90
+ "gender": "Gender",
91
+ "highestServiceVolume": "Highest volume service: {{time}}",
92
+ "home": "Home",
93
+ "identifier": "Identifier",
94
+ "invalidNumber": "Number is not valid",
95
+ "invalidTime": "Invalid time",
96
+ "isRecurringAppointment": "Is this a recurring appointment?",
97
+ "itemsPerPage": "Items per page",
98
+ "loading": "Loading",
99
+ "location": "Location",
100
+ "medications": "Medications",
101
+ "missed": "Missed",
102
+ "nextPage": "Next page",
103
+ "no": "No",
104
+ "noAppointmentsToDisplay": "No appointments to display",
105
+ "noContent": "No Content",
106
+ "noCurrentAppointments": "There are no appointments scheduled for today to display for this patient",
107
+ "noEncountersFound": "No encounters found",
108
+ "noPastAppointments": "There are no past appointments to display for this patient",
109
+ "noPreviousVisitFound": "No previous visit found",
110
+ "notArrived": "Not arrived",
111
+ "note": "Note",
112
+ "notes": "Notes",
113
+ "noUpcomingAppointments": "No upcoming appointments found",
114
+ "noUpcomingAppointmentsForPatient": "There are no upcoming appointments to display for this patient",
115
+ "pageNumber": "Page number",
116
+ "past": "Past",
117
+ "patientDetails": "Patient Details",
118
+ "patientDoubleBooking": "Patient already booked for an appointment at this time",
119
+ "patientName": "Patient name",
120
+ "patients": "Patients",
121
+ "period": "Period",
122
+ "previousPage": "Previous page",
123
+ "provider": "Provider",
124
+ "providers": "Providers",
125
+ "providersBooked": "Providers booked: {{time}}",
126
+ "recurringAppointment": "Recurring Appointment",
127
+ "repeatEvery": "Repeat every",
128
+ "save": "Save",
129
+ "saveAndClose": "Save and close",
130
+ "scheduled": "Scheduled",
131
+ "scheduledAppointments": "Scheduled appointments",
132
+ "selectALocation": "Select a location",
133
+ "selectAppointmentStatus": "Select status",
134
+ "selectAppointmentType": "Select an appointment type",
135
+ "selectLocation": "Select location",
136
+ "selectOption": "Select an option",
137
+ "selectProvider": "Select a provider",
138
+ "selectService": "Select a service",
139
+ "selectServiceType": "Select service type",
140
+ "service": "Service",
141
+ "serviceName": "Service name",
142
+ "serviceType": "Service Type",
143
+ "serviceUnavailable": "Appointment time is outside of service hours",
144
+ "startDate": "Start date",
145
+ "startTime": "Start Time",
146
+ "status": "Status",
147
+ "time": "Time",
148
+ "today": "Today",
149
+ "todays": "Today's",
150
+ "unscheduled": "Unscheduled",
151
+ "unscheduledAppointments": "Unscheduled appointments",
152
+ "unscheduledAppointments_lower": "unscheduled appointments",
153
+ "upcoming": "Upcoming",
154
+ "upcomingAppointments": "Upcoming appointments",
155
+ "view": "View",
156
+ "vitals": "Vitals",
157
+ "week": "Week",
158
+ "yes": "Yes"
159
+ }
@@ -0,0 +1,148 @@
1
+ {
2
+ "action": "Acción",
3
+ "actions": "Acciones",
4
+ "add": "Agregar",
5
+ "addAppointment": "Add Appointment",
6
+ "addPatientToQueue": "Agregar paciente a la cola",
7
+ "age": "Edad",
8
+ "all": "Todo",
9
+ "allDay": "All day",
10
+ "appointmentCancelError": "Error al cancelar la cita",
11
+ "appointmentCancelled": "Cita cancelada",
12
+ "appointmentCancelledSuccessfully": "Cita cancelada con éxito",
13
+ "appointmentColor": "Color de la cita",
14
+ "appointmentEdited": "Appointment edited",
15
+ "appointmentEditError": "Error editing appointment",
16
+ "appointmentForm": "Formulario de citas",
17
+ "appointmentFormError": "Error al programar la cita",
18
+ "appointmentHistory": "Historial de citas",
19
+ "appointmentMetrics": "Métricas de citas",
20
+ "appointmentMetricsLoadError": "",
21
+ "appointmentNoteLabel": "Write an additional note",
22
+ "appointmentNotePlaceholder": "Write any additional points here",
23
+ "appointmentNotes": "Notas de cita",
24
+ "appointmentNowVisible": "Ahora es visible en la página de Citas",
25
+ "appointments": "Citas",
26
+ "appointmentsCalendar": "Calendario de Citas",
27
+ "appointmentScheduled": "Cita programada",
28
+ "appointmentService": "Servicio de citas",
29
+ "appointmentServiceCreate": "Servicio de citas creado exitosamente",
30
+ "appointmentServiceName": "Nombre del servicio de citas",
31
+ "appointmentStatus": "Appointment status",
32
+ "appointmentToFulfill": "Seleccionar cita(s) para cumplir",
33
+ "appointmentType": "Tipo de cita",
34
+ "appointmentType_title": "Tipo de cita",
35
+ "back": "Atrás",
36
+ "calendar": "Calendario",
37
+ "cameEarly": "Llegó temprano",
38
+ "cancel": "Cancelar",
39
+ "cancelAppointment": "Cancelar cita",
40
+ "cancelAppointmentModalConfirmationText": "¿Está seguro de que desea cancelar esta cita?",
41
+ "cancelled": "Cancelada",
42
+ "checkedIn": "Checked in",
43
+ "checkedOut": "Completada",
44
+ "checkIn": "Registrar",
45
+ "checkOut": "Finalizar",
46
+ "chooseAppointmentType": "Choose appointment type",
47
+ "chooseLocation": "Choose a location",
48
+ "chooseProvider": "Choose a provider",
49
+ "chooseService": "Seleccionar servicio",
50
+ "completed": "Completado",
51
+ "createAppointmentService": "Crear servicios de citas",
52
+ "createNewAppointment": "Crear nueva cita",
53
+ "date": "Fecha",
54
+ "date&Time": "Date & time",
55
+ "dateAndTimeOfVisit": "Fecha y hora de la visita",
56
+ "dateOfBirth": "Date of birth",
57
+ "dateTime": "Date & Time",
58
+ "day": "Day",
59
+ "daysOfWeek": "Days of the week",
60
+ "discard": "Descartar",
61
+ "download": "Descargar",
62
+ "durationInMinutes": "Duration (minutes)",
63
+ "durationMins": "Duración (min)",
64
+ "edit": "Editar",
65
+ "editAppointment": "Editar cita",
66
+ "editAppointments": "Editar cita",
67
+ "emptyStateText": "No hay {{displayText}} para mostrar",
68
+ "encounters": "Encuentros",
69
+ "encounterType": "Tipo de encuentro",
70
+ "endDate": "End date",
71
+ "endTime": "Hora de finalización",
72
+ "errorCreatingAppointmentService": "Error creating appointment service",
73
+ "expected": "Expected",
74
+ "gender": "Género",
75
+ "highestServiceVolume": "Highest volume service: {{time}}",
76
+ "home": "Inicio",
77
+ "identifier": "Identificador",
78
+ "invalidNumber": "Number is not valid",
79
+ "invalidTime": "Invalid time",
80
+ "isRecurringAppointment": "Is this a recurring appointment?",
81
+ "loading": "Loading",
82
+ "location": "Ubicación",
83
+ "medications": "Medicamentos",
84
+ "missed": "Perdida",
85
+ "missingVisitType": "Tipo de visita faltante",
86
+ "no": "No",
87
+ "noContent": "No Content",
88
+ "noCurrentAppointments": "No hay citas programadas que mostrar para hoy para este paciente",
89
+ "noEncountersFound": "No se encontraron encuentros",
90
+ "noMatchingVisitTypeFound": "",
91
+ "noPastAppointments": "No hay citas anteriores para mostrar para este paciente",
92
+ "noPreviousVisitFound": "No se encontraron visitas anteriores",
93
+ "notArrived": "No ha llegado",
94
+ "note": "Note",
95
+ "notes": "Notas",
96
+ "noUpcomingAppointments": "No hay próximas citas para mostrar para este paciente",
97
+ "noUpcomingAppointmentsForPatient": "No hay próximas citas para mostrar para este paciente",
98
+ "past": "Anterior",
99
+ "patientDetails": "Detalles del paciente",
100
+ "patientName": "Nombre del paciente",
101
+ "patients": "Pacientes",
102
+ "patientSearch": "Búsqueda de pacientes",
103
+ "period": "Period",
104
+ "provider": "Proveedor",
105
+ "providers": "Proveedores",
106
+ "providersBooked": "Providers booked: {{time}}",
107
+ "queueAddedSuccessfully": "",
108
+ "queueEntryError": "Error al agregar paciente a la cola",
109
+ "recurringAppointment": "Recurring Appointment",
110
+ "repeatEvery": "Repeat every",
111
+ "save": "Guardar",
112
+ "saveAndClose": "Save and close",
113
+ "scheduled": "Programada",
114
+ "scheduledAppointments": "Citas programadas",
115
+ "search": "Buscar",
116
+ "searchForAVisitType": "Buscar un tipo de visita",
117
+ "selectAppointmentStatus": "Seleccionar estado",
118
+ "selectAppointmentType": "Seleccionar tipo de cita",
119
+ "selectFacility": "Seleccionar instalación",
120
+ "selectLocation": "Seleccionar ubicación",
121
+ "selectOption": "Seleccionar una opción",
122
+ "selectProvider": "Select a provider",
123
+ "selectService": "Seleccionar servicio",
124
+ "selectServiceType": "Seleccionar tipo de servicio",
125
+ "selectVisitType": "Por favor, seleccione un tipo de visita",
126
+ "service": "Servicio",
127
+ "serviceName": "Nombre del servicio",
128
+ "serviceType": "Tipo de servicio",
129
+ "startDate": "Start date",
130
+ "startTime": "Hora de inicio",
131
+ "startVisitError": "Error al iniciar la visita",
132
+ "time": "Tiempo",
133
+ "today": "Hoy",
134
+ "todays": "Today's",
135
+ "total": "Total",
136
+ "unscheduled": "No programada",
137
+ "unscheduledAppointments": "Citas no programadas",
138
+ "unscheduledAppointments_lower": "citas no programadas",
139
+ "upcoming": "Próximas",
140
+ "upcomingAppointments": "Próximas citas",
141
+ "view": "Ver",
142
+ "visitLocation": "Ubicación de la visita",
143
+ "visitStarted": "Visita iniciada",
144
+ "visitType": "Tipo de visita",
145
+ "vitals": "Signos vitales",
146
+ "week": "Week",
147
+ "yes": "Sí"
148
+ }
@@ -0,0 +1,148 @@
1
+ {
2
+ "action": "Action",
3
+ "actions": "Actions",
4
+ "add": "Add",
5
+ "addAppointment": "Add Appointment",
6
+ "addPatientToQueue": "Add patient to queue",
7
+ "age": "Age",
8
+ "all": "All",
9
+ "allDay": "All day",
10
+ "appointmentCancelError": "Error cancelling appointment",
11
+ "appointmentCancelled": "Appointment cancelled",
12
+ "appointmentCancelledSuccessfully": "Appointment cancelled successfully",
13
+ "appointmentColor": "Appointment color",
14
+ "appointmentEdited": "Appointment edited",
15
+ "appointmentEditError": "Error editing appointment",
16
+ "appointmentForm": "Create Appointment",
17
+ "appointmentFormError": "Error scheduling appointment",
18
+ "appointmentHistory": "Appointment History",
19
+ "appointmentMetrics": "Appointment metrics",
20
+ "appointmentMetricsLoadError": "",
21
+ "appointmentNoteLabel": "Write an additional note",
22
+ "appointmentNotePlaceholder": "Write any additional points here",
23
+ "appointmentNotes": "Appointment Notes",
24
+ "appointmentNowVisible": "It is now visible on the Appointments page",
25
+ "appointments": "appointment",
26
+ "appointmentsCalendar": "Appointments Calendar",
27
+ "appointmentScheduled": "Appointment scheduled",
28
+ "appointmentService": "Appointment service",
29
+ "appointmentServiceCreate": "Appointment service created successfully",
30
+ "appointmentServiceName": "Appointment service name",
31
+ "appointmentStatus": "Appointment status",
32
+ "appointmentToFulfill": "Select appointment(s) to fulfill",
33
+ "appointmentType": "Appointment type",
34
+ "appointmentType_title": "Appointment Type",
35
+ "back": "Back",
36
+ "calendar": "Calendar",
37
+ "cameEarly": "Came early",
38
+ "cancel": "Cancel",
39
+ "cancelAppointment": "Cancel Appointment",
40
+ "cancelAppointmentModalConfirmationText": "Are you sure you want to cancel this appointment?",
41
+ "cancelled": "Cancelled",
42
+ "checkedIn": "Checked in",
43
+ "checkedOut": "Checked out",
44
+ "checkIn": "Check In",
45
+ "checkOut": "Check out",
46
+ "chooseAppointmentType": "Choose appointment type",
47
+ "chooseLocation": "Choose a location",
48
+ "chooseProvider": "Choose a provider",
49
+ "chooseService": "Select service",
50
+ "completed": "Completed",
51
+ "createAppointmentService": "Create appointment service",
52
+ "createNewAppointment": "Create new appointment",
53
+ "date": "Date",
54
+ "date&Time": "Date & time",
55
+ "dateAndTimeOfVisit": "Date and time of visit",
56
+ "dateOfBirth": "Date of birth",
57
+ "dateTime": "Date & Time",
58
+ "day": "Day",
59
+ "daysOfWeek": "Days of the week",
60
+ "discard": "Discard",
61
+ "download": "Download",
62
+ "durationInMinutes": "Duration (minutes)",
63
+ "durationMins": "Duration min",
64
+ "edit": "Edit",
65
+ "editAppointment": "Edit Appointment",
66
+ "editAppointments": "Edit Appointment",
67
+ "emptyStateText": "There are no {{displayText}} to display",
68
+ "encounters": "Encounters",
69
+ "encounterType": "Encounter type",
70
+ "endDate": "End date",
71
+ "endTime": "End Time",
72
+ "errorCreatingAppointmentService": "Error creating appointment service",
73
+ "expected": "Expected",
74
+ "gender": "Gender",
75
+ "highestServiceVolume": "Highest volume service: {{time}}",
76
+ "home": "Home",
77
+ "identifier": "Identifier",
78
+ "invalidNumber": "Number is not valid",
79
+ "invalidTime": "Invalid time",
80
+ "isRecurringAppointment": "Is this a recurring appointment?",
81
+ "loading": "Loading",
82
+ "location": "Location",
83
+ "medications": "Medications",
84
+ "missed": "Missed",
85
+ "missingVisitType": "Missing visit type",
86
+ "no": "No",
87
+ "noContent": "No Content",
88
+ "noCurrentAppointments": "There are no appointments scheduled for today to display for this patient",
89
+ "noEncountersFound": "No encounters found",
90
+ "noMatchingVisitTypeFound": "",
91
+ "noPastAppointments": "Il n'y a pas de rendez-vous passé à afficher pour ce patient",
92
+ "noPreviousVisitFound": "No previous visit found",
93
+ "notArrived": "Not arrived",
94
+ "note": "Note",
95
+ "notes": "Notes",
96
+ "noUpcomingAppointments": "Il n'y a pas de rendez-vous à venir à afficher pour ce patient",
97
+ "noUpcomingAppointmentsForPatient": "There are no upcoming appointments to display for this patient",
98
+ "past": "Passé",
99
+ "patientDetails": "Patient details",
100
+ "patientName": "Patient name",
101
+ "patients": "Patients",
102
+ "patientSearch": "Patient search",
103
+ "period": "Period",
104
+ "provider": "Provider",
105
+ "providers": "Providers",
106
+ "providersBooked": "Providers booked: {{time}}",
107
+ "queueAddedSuccessfully": "",
108
+ "queueEntryError": "Error adding patient to the queue",
109
+ "recurringAppointment": "Recurring Appointment",
110
+ "repeatEvery": "Repeat every",
111
+ "save": "Save",
112
+ "saveAndClose": "Save and close",
113
+ "scheduled": "Scheduled",
114
+ "scheduledAppointments": "Scheduled appointments",
115
+ "search": "Search",
116
+ "searchForAVisitType": "Search for a visit type",
117
+ "selectAppointmentStatus": "Select status",
118
+ "selectAppointmentType": "Select an appointment type",
119
+ "selectFacility": "Select a facility",
120
+ "selectLocation": "Select location",
121
+ "selectOption": "Select an option",
122
+ "selectProvider": "Select a provider",
123
+ "selectService": "Select a service",
124
+ "selectServiceType": "Select service type",
125
+ "selectVisitType": "Please select a Visit Type",
126
+ "service": "Service",
127
+ "serviceName": "Service name",
128
+ "serviceType": "Service Type",
129
+ "startDate": "Start date",
130
+ "startTime": "Start Time",
131
+ "startVisitError": "Error starting visit",
132
+ "time": "Time",
133
+ "today": "Aujourd'hui",
134
+ "todays": "Today's",
135
+ "total": "Total",
136
+ "unscheduled": "Unscheduled",
137
+ "unscheduledAppointments": "Unscheduled appointments",
138
+ "unscheduledAppointments_lower": "unscheduled appointments",
139
+ "upcoming": "Upcoming",
140
+ "upcomingAppointments": "Upcoming appointments",
141
+ "view": "View",
142
+ "visitLocation": "Visit Location",
143
+ "visitStarted": "Visit started",
144
+ "visitType": "Visit Type",
145
+ "vitals": "Vitals",
146
+ "week": "Week",
147
+ "yes": "Yes"
148
+ }