@openmrs/esm-appointments-app 9.0.1-pre.6388 → 9.0.1-pre.6397
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 +1 -1
- package/dist/1119.js +1 -1
- package/dist/1197.js +1 -1
- package/dist/2146.js +1 -1
- package/dist/2690.js +1 -1
- package/dist/3099.js +1 -1
- package/dist/3584.js +1 -1
- package/dist/4055.js +1 -1
- package/dist/4132.js +1 -1
- package/dist/4300.js +1 -1
- package/dist/4335.js +1 -1
- package/dist/4618.js +1 -1
- package/dist/4652.js +1 -1
- package/dist/4944.js +1 -1
- package/dist/5173.js +1 -1
- package/dist/5241.js +1 -1
- package/dist/525.js +1 -1
- package/dist/525.js.map +1 -1
- package/dist/5442.js +1 -1
- package/dist/5661.js +1 -1
- package/dist/6022.js +1 -1
- package/dist/6468.js +1 -1
- package/dist/6679.js +1 -1
- package/dist/6840.js +1 -1
- package/dist/6859.js +1 -1
- package/dist/7097.js +1 -1
- package/dist/7159.js +1 -1
- package/dist/723.js +1 -1
- package/dist/7617.js +1 -1
- package/dist/7698.js +1 -1
- package/dist/7698.js.map +1 -1
- package/dist/795.js +1 -1
- package/dist/8163.js +1 -1
- package/dist/8349.js +1 -1
- package/dist/8618.js +1 -1
- package/dist/890.js +1 -1
- package/dist/9214.js +1 -1
- package/dist/9538.js +1 -1
- package/dist/9569.js +1 -1
- package/dist/986.js +1 -1
- package/dist/9879.js +1 -1
- package/dist/9895.js +1 -1
- package/dist/9900.js +1 -1
- package/dist/9913.js +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/openmrs-esm-appointments-app.js.buildmanifest.json +75 -75
- package/dist/routes.json +1 -1
- package/package.json +1 -1
- package/src/appointments/common-components/appointments-table.component.tsx +9 -24
- package/src/config-schema.ts +35 -0
- package/translations/am.json +2 -2
- package/translations/ar.json +2 -2
- package/translations/ar_SY.json +2 -2
- package/translations/bn.json +2 -2
- package/translations/de.json +2 -2
- package/translations/en.json +2 -2
- package/translations/en_US.json +2 -2
- package/translations/es.json +2 -2
- package/translations/es_MX.json +2 -2
- package/translations/fr.json +2 -2
- package/translations/he.json +2 -2
- package/translations/hi.json +2 -2
- package/translations/hi_IN.json +2 -2
- package/translations/id.json +2 -2
- package/translations/it.json +2 -2
- package/translations/ka.json +2 -2
- package/translations/km.json +2 -2
- package/translations/ku.json +2 -2
- package/translations/ky.json +2 -2
- package/translations/lg.json +2 -2
- package/translations/ne.json +2 -2
- package/translations/pl.json +2 -2
- package/translations/pt.json +2 -2
- package/translations/pt_BR.json +2 -2
- package/translations/qu.json +2 -2
- package/translations/ro_RO.json +2 -2
- package/translations/ru_RU.json +2 -2
- package/translations/si.json +2 -2
- package/translations/sw.json +2 -2
- package/translations/sw_KE.json +2 -2
- package/translations/tr.json +2 -2
- package/translations/tr_TR.json +2 -2
- package/translations/uk.json +2 -2
- package/translations/uz.json +2 -2
- package/translations/uz@Latn.json +2 -2
- package/translations/uz_UZ.json +2 -2
- package/translations/vi.json +2 -2
- package/translations/zh.json +2 -2
- package/translations/zh_CN.json +2 -2
package/src/config-schema.ts
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
import { Type, validators } from '@openmrs/esm-framework';
|
|
2
2
|
|
|
3
|
+
export const appointmentColumnTypes = [
|
|
4
|
+
// t('patientName', 'Patient name')
|
|
5
|
+
'patientName',
|
|
6
|
+
// t('identifier', 'Identifier')
|
|
7
|
+
'identifier',
|
|
8
|
+
// t('location', 'Location')
|
|
9
|
+
'location',
|
|
10
|
+
// t('serviceType', 'Service type')
|
|
11
|
+
'serviceType',
|
|
12
|
+
// t('status', 'Status')
|
|
13
|
+
'status',
|
|
14
|
+
// t('dateTime', 'Date & time')
|
|
15
|
+
'dateTime',
|
|
16
|
+
// t('provider', 'Provider')
|
|
17
|
+
'provider',
|
|
18
|
+
] as const;
|
|
19
|
+
|
|
20
|
+
type AppointmentColumnType = (typeof appointmentColumnTypes)[number];
|
|
21
|
+
|
|
3
22
|
export const configSchema = {
|
|
4
23
|
allowAllDayAppointments: {
|
|
5
24
|
_type: Type.Boolean,
|
|
@@ -77,12 +96,23 @@ export const configSchema = {
|
|
|
77
96
|
_description:
|
|
78
97
|
'Whether to show the Unscheduled Appointments tab. Note that configuring this to true requires a custom unscheduledAppointment endpoint not currently available',
|
|
79
98
|
},
|
|
99
|
+
appointmentsTableColumns: {
|
|
100
|
+
_type: Type.Array,
|
|
101
|
+
_description:
|
|
102
|
+
'Columns to display in the appointment table. Available options: ' + appointmentColumnTypes.join(', '),
|
|
103
|
+
_default: ['patientName', 'identifier', 'location', 'serviceType', 'status'],
|
|
104
|
+
_elements: {
|
|
105
|
+
_type: Type.String,
|
|
106
|
+
_validators: [validators.oneOf(appointmentColumnTypes)],
|
|
107
|
+
},
|
|
108
|
+
},
|
|
80
109
|
};
|
|
81
110
|
|
|
82
111
|
export interface ConfigObject {
|
|
83
112
|
allowAllDayAppointments: boolean;
|
|
84
113
|
appointmentStatuses: Array<string>;
|
|
85
114
|
appointmentTypes: Array<string>;
|
|
115
|
+
appointmentsTableColumns: Array<string>;
|
|
86
116
|
checkInButton: {
|
|
87
117
|
enabled: boolean;
|
|
88
118
|
showIfActiveVisit: boolean;
|
|
@@ -97,3 +127,8 @@ export interface ConfigObject {
|
|
|
97
127
|
patientIdentifierType: string;
|
|
98
128
|
showUnscheduledAppointmentsTab: boolean;
|
|
99
129
|
}
|
|
130
|
+
|
|
131
|
+
export type AppointmentTableColumn = {
|
|
132
|
+
header: string;
|
|
133
|
+
key: string;
|
|
134
|
+
};
|
package/translations/am.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Gender",
|
|
87
87
|
"highestServiceVolume": "Highest volume service: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identifier",
|
|
90
89
|
"invalidNumber": "Number is not valid",
|
|
90
|
+
"identifier": "Identifier",
|
|
91
91
|
"isRecurringAppointment": "Is this a recurring appointment?",
|
|
92
92
|
"itemsPerPage": "Items per page",
|
|
93
93
|
"loading": "Loading",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Select a provider",
|
|
141
141
|
"selectService": "Select a service",
|
|
142
142
|
"service": "Service",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Service name",
|
|
144
|
-
"serviceType": "Service Type",
|
|
145
145
|
"serviceUnavailable": "Appointment time is outside of service hours",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/ar.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "الجنس",
|
|
87
87
|
"highestServiceVolume": "Highest volume service: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "معرف",
|
|
90
89
|
"invalidNumber": "Number is not valid",
|
|
90
|
+
"identifier": "معرف",
|
|
91
91
|
"isRecurringAppointment": "Is this a recurring appointment?",
|
|
92
92
|
"itemsPerPage": "العناصر لكل صفحة",
|
|
93
93
|
"loading": "Loading",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Select a provider",
|
|
141
141
|
"selectService": "اختر الخدمة",
|
|
142
142
|
"service": "خدمة",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "اسم الخدمة",
|
|
144
|
-
"serviceType": "نوع الخدمة",
|
|
145
145
|
"serviceUnavailable": "Appointment time is outside of service hours",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/ar_SY.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Gender",
|
|
87
87
|
"highestServiceVolume": "Highest volume service: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identifier",
|
|
90
89
|
"invalidNumber": "Number is not valid",
|
|
90
|
+
"identifier": "Identifier",
|
|
91
91
|
"isRecurringAppointment": "Is this a recurring appointment?",
|
|
92
92
|
"itemsPerPage": "Items per page",
|
|
93
93
|
"loading": "Loading",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Select a provider",
|
|
141
141
|
"selectService": "Select a service",
|
|
142
142
|
"service": "Service",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Service name",
|
|
144
|
-
"serviceType": "Service Type",
|
|
145
145
|
"serviceUnavailable": "Appointment time is outside of service hours",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/bn.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "লিঙ্গ",
|
|
87
87
|
"highestServiceVolume": "Highest volume service: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identifier",
|
|
90
89
|
"invalidNumber": "নম্বরটি ভ্যলিড নয়",
|
|
90
|
+
"identifier": "Identifier",
|
|
91
91
|
"isRecurringAppointment": "Is this a recurring appointment?",
|
|
92
92
|
"itemsPerPage": "Items per page",
|
|
93
93
|
"loading": "লোড হচ্ছে",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Select a provider",
|
|
141
141
|
"selectService": "Select a service",
|
|
142
142
|
"service": "সেবা",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "সেবার নাম",
|
|
144
|
-
"serviceType": "সেবার ধরণ",
|
|
145
145
|
"serviceUnavailable": "Appointment time is outside of service hours",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/de.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Gender",
|
|
87
87
|
"highestServiceVolume": "Highest volume service: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identifier",
|
|
90
89
|
"invalidNumber": "Number is not valid",
|
|
90
|
+
"identifier": "Identifier",
|
|
91
91
|
"isRecurringAppointment": "Is this a recurring appointment?",
|
|
92
92
|
"itemsPerPage": "Items per page",
|
|
93
93
|
"loading": "Loading",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Select a provider",
|
|
141
141
|
"selectService": "Select a service",
|
|
142
142
|
"service": "Service",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Service name",
|
|
144
|
-
"serviceType": "Service Type",
|
|
145
145
|
"serviceUnavailable": "Appointment time is outside of service hours",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/en.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Gender",
|
|
87
87
|
"highestServiceVolume": "Highest volume service: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identifier",
|
|
90
89
|
"invalidNumber": "Number is not valid",
|
|
90
|
+
"identifier": "Identifier",
|
|
91
91
|
"isRecurringAppointment": "Is this a recurring appointment?",
|
|
92
92
|
"itemsPerPage": "Items per page",
|
|
93
93
|
"loading": "Loading",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Select a provider",
|
|
141
141
|
"selectService": "Select a service",
|
|
142
142
|
"service": "Service",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Service name",
|
|
144
|
-
"serviceType": "Service Type",
|
|
145
145
|
"serviceUnavailable": "Appointment time is outside of service hours",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/en_US.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Gender",
|
|
87
87
|
"highestServiceVolume": "Highest volume service: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identifier",
|
|
90
89
|
"invalidNumber": "Number is not valid",
|
|
90
|
+
"identifier": "Identifier",
|
|
91
91
|
"isRecurringAppointment": "Is this a recurring appointment?",
|
|
92
92
|
"itemsPerPage": "Items per page",
|
|
93
93
|
"loading": "Loading",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Select a provider",
|
|
141
141
|
"selectService": "Select a service",
|
|
142
142
|
"service": "Service",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Service name",
|
|
144
|
-
"serviceType": "Service Type",
|
|
145
145
|
"serviceUnavailable": "Appointment time is outside of service hours",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/es.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Género",
|
|
87
87
|
"highestServiceVolume": "Servicio de mayor volumen: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identificador",
|
|
90
89
|
"invalidNumber": "El número no es válido",
|
|
90
|
+
"identifier": "Identificador",
|
|
91
91
|
"isRecurringAppointment": "¿Esta es una cita recurrente?",
|
|
92
92
|
"itemsPerPage": "Elementos por página",
|
|
93
93
|
"loading": "Cargando",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Seleccione un proveedor de la salud",
|
|
141
141
|
"selectService": "Seleccione un servicio",
|
|
142
142
|
"service": "Servicio",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Nombre del servicio",
|
|
144
|
-
"serviceType": "Tipo de Servicio",
|
|
145
145
|
"serviceUnavailable": "La hora de la cita está fuera de las horas de servicio",
|
|
146
146
|
"status": "Estado",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/es_MX.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Gender",
|
|
87
87
|
"highestServiceVolume": "Highest volume service: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identifier",
|
|
90
89
|
"invalidNumber": "Number is not valid",
|
|
90
|
+
"identifier": "Identifier",
|
|
91
91
|
"isRecurringAppointment": "Is this a recurring appointment?",
|
|
92
92
|
"itemsPerPage": "Items per page",
|
|
93
93
|
"loading": "Loading",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Select a provider",
|
|
141
141
|
"selectService": "Select a service",
|
|
142
142
|
"service": "Service",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Service name",
|
|
144
|
-
"serviceType": "Service Type",
|
|
145
145
|
"serviceUnavailable": "Appointment time is outside of service hours",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/fr.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Genre",
|
|
87
87
|
"highestServiceVolume": "Service le plus utilisé: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Service le plus utilisé",
|
|
89
|
-
"identifier": "Identifiant",
|
|
90
89
|
"invalidNumber": "Le numéro n'est pas valide",
|
|
90
|
+
"identifier": "Identifiant",
|
|
91
91
|
"isRecurringAppointment": "S'agit-il d'un rendez-vous récurrent?",
|
|
92
92
|
"itemsPerPage": "Eléments par page",
|
|
93
93
|
"loading": "En cours de chargement",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Sélectionnez un prestataire",
|
|
141
141
|
"selectService": "Sélectionner un service",
|
|
142
142
|
"service": "Service",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Nom du service",
|
|
144
|
-
"serviceType": "Type de service",
|
|
145
145
|
"serviceUnavailable": "L'heure du rendez-vous est en dehors des heures de service",
|
|
146
146
|
"status": "Statut",
|
|
147
147
|
"SUN": "DIM",
|
package/translations/he.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "מגדר",
|
|
87
87
|
"highestServiceVolume": "השירות הכי עמוס: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "מזהה",
|
|
90
89
|
"invalidNumber": "המספר שגוי",
|
|
90
|
+
"identifier": "מזהה",
|
|
91
91
|
"isRecurringAppointment": "זה תור חוזר?",
|
|
92
92
|
"itemsPerPage": "פריטים בעמוד",
|
|
93
93
|
"loading": "בטעינה",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "בחירת ספק",
|
|
141
141
|
"selectService": "בחירת שירות",
|
|
142
142
|
"service": "שירות",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "שם השירות",
|
|
144
|
-
"serviceType": "סוג השירות",
|
|
145
145
|
"serviceUnavailable": "זמן התור הוא מחוץ לשעות השירות",
|
|
146
146
|
"status": "מצב",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/hi.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Gender",
|
|
87
87
|
"highestServiceVolume": "Highest volume service: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identifier",
|
|
90
89
|
"invalidNumber": "Number is not valid",
|
|
90
|
+
"identifier": "Identifier",
|
|
91
91
|
"isRecurringAppointment": "Is this a recurring appointment?",
|
|
92
92
|
"itemsPerPage": "Items per page",
|
|
93
93
|
"loading": "Loading",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Select a provider",
|
|
141
141
|
"selectService": "Select a service",
|
|
142
142
|
"service": "Service",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Service name",
|
|
144
|
-
"serviceType": "Service Type",
|
|
145
145
|
"serviceUnavailable": "Appointment time is outside of service hours",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/hi_IN.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Gender",
|
|
87
87
|
"highestServiceVolume": "Highest volume service: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identifier",
|
|
90
89
|
"invalidNumber": "Number is not valid",
|
|
90
|
+
"identifier": "Identifier",
|
|
91
91
|
"isRecurringAppointment": "Is this a recurring appointment?",
|
|
92
92
|
"itemsPerPage": "Items per page",
|
|
93
93
|
"loading": "Loading",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Select a provider",
|
|
141
141
|
"selectService": "Select a service",
|
|
142
142
|
"service": "Service",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Service name",
|
|
144
|
-
"serviceType": "Service Type",
|
|
145
145
|
"serviceUnavailable": "Appointment time is outside of service hours",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/id.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Jenis kelamin",
|
|
87
87
|
"highestServiceVolume": "Layanan dengan volume tertinggi: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Pengenal",
|
|
90
89
|
"invalidNumber": "Nomor tidak valid",
|
|
90
|
+
"identifier": "Pengenal",
|
|
91
91
|
"isRecurringAppointment": "Apakah ini janji temu berulang?",
|
|
92
92
|
"itemsPerPage": "Item per halaman",
|
|
93
93
|
"loading": "Memuat",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Pilih penyedia layanan kesehatan",
|
|
141
141
|
"selectService": "Pilih layanan",
|
|
142
142
|
"service": "Layanan",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Nama layanan",
|
|
144
|
-
"serviceType": "Jenis Layanan",
|
|
145
145
|
"serviceUnavailable": "Waktu janji temu di luar jam layanan",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/it.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Sesso",
|
|
87
87
|
"highestServiceVolume": "Servizio con maggior volume: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identificativo",
|
|
90
89
|
"invalidNumber": "Numero non valido",
|
|
90
|
+
"identifier": "Identificativo",
|
|
91
91
|
"isRecurringAppointment": "È un appuntamento ricorrente?",
|
|
92
92
|
"itemsPerPage": "Elementi per pagina",
|
|
93
93
|
"loading": "Caricamento...",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Seleziona un operatore",
|
|
141
141
|
"selectService": "Seleziona un servizio",
|
|
142
142
|
"service": "Servizio",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Nome del servizio",
|
|
144
|
-
"serviceType": "Tipo di servizio",
|
|
145
145
|
"serviceUnavailable": "L'orario dell'appuntamento è al di fuori degli orari di servizio",
|
|
146
146
|
"status": "Stato",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/ka.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "სქესი",
|
|
87
87
|
"highestServiceVolume": "Highest volume service: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "იდენტიფიკატორი",
|
|
90
89
|
"invalidNumber": "რიცხვი არასწორია",
|
|
90
|
+
"identifier": "იდენტიფიკატორი",
|
|
91
91
|
"isRecurringAppointment": "ეს გამეორებადი მიღებაა?",
|
|
92
92
|
"itemsPerPage": "ელემენტი ერთ გვერდზე",
|
|
93
93
|
"loading": "მიმდინარეობს ჩატვირთვა",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "აირჩიეთ მომწოდებელი",
|
|
141
141
|
"selectService": "აირჩიეთ სერვისი",
|
|
142
142
|
"service": "სერვისი",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "სერვისის სახელი",
|
|
144
|
-
"serviceType": "სერვისის ტიპი",
|
|
145
145
|
"serviceUnavailable": "Appointment time is outside of service hours",
|
|
146
146
|
"status": "სტატუსი",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/km.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Gender",
|
|
87
87
|
"highestServiceVolume": "Highest volume service: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "អ្នកកំណត់អត្តសញ្ញាណ",
|
|
90
89
|
"invalidNumber": "Number is not valid",
|
|
90
|
+
"identifier": "អ្នកកំណត់អត្តសញ្ញាណ",
|
|
91
91
|
"isRecurringAppointment": "Is this a recurring appointment?",
|
|
92
92
|
"itemsPerPage": "Items per page",
|
|
93
93
|
"loading": "Loading",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Select a provider",
|
|
141
141
|
"selectService": "ជ្រើសរើសសេវាកម្ម",
|
|
142
142
|
"service": "សេវាកម្ម",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Service name",
|
|
144
|
-
"serviceType": "ប្រភេទសេវាកម្ម",
|
|
145
145
|
"serviceUnavailable": "Appointment time is outside of service hours",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/ku.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Gender",
|
|
87
87
|
"highestServiceVolume": "Highest volume service: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identifier",
|
|
90
89
|
"invalidNumber": "Number is not valid",
|
|
90
|
+
"identifier": "Identifier",
|
|
91
91
|
"isRecurringAppointment": "Is this a recurring appointment?",
|
|
92
92
|
"itemsPerPage": "Items per page",
|
|
93
93
|
"loading": "Loading",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Select a provider",
|
|
141
141
|
"selectService": "Select a service",
|
|
142
142
|
"service": "Service",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Service name",
|
|
144
|
-
"serviceType": "Service Type",
|
|
145
145
|
"serviceUnavailable": "Appointment time is outside of service hours",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/ky.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Gender",
|
|
87
87
|
"highestServiceVolume": "Highest volume service: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identifier",
|
|
90
89
|
"invalidNumber": "Number is not valid",
|
|
90
|
+
"identifier": "Identifier",
|
|
91
91
|
"isRecurringAppointment": "Is this a recurring appointment?",
|
|
92
92
|
"itemsPerPage": "Items per page",
|
|
93
93
|
"loading": "Loading",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Select a provider",
|
|
141
141
|
"selectService": "Select a service",
|
|
142
142
|
"service": "Service",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Service name",
|
|
144
|
-
"serviceType": "Service Type",
|
|
145
145
|
"serviceUnavailable": "Appointment time is outside of service hours",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/lg.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Gender",
|
|
87
87
|
"highestServiceVolume": "Highest volume service: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identifier",
|
|
90
89
|
"invalidNumber": "Number is not valid",
|
|
90
|
+
"identifier": "Identifier",
|
|
91
91
|
"isRecurringAppointment": "Is this a recurring appointment?",
|
|
92
92
|
"itemsPerPage": "Items per page",
|
|
93
93
|
"loading": "Loading",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Select a provider",
|
|
141
141
|
"selectService": "Select a service",
|
|
142
142
|
"service": "Service",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Service name",
|
|
144
|
-
"serviceType": "Service Type",
|
|
145
145
|
"serviceUnavailable": "Appointment time is outside of service hours",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/ne.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Gender",
|
|
87
87
|
"highestServiceVolume": "Highest volume service: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identifier",
|
|
90
89
|
"invalidNumber": "Number is not valid",
|
|
90
|
+
"identifier": "Identifier",
|
|
91
91
|
"isRecurringAppointment": "Is this a recurring appointment?",
|
|
92
92
|
"itemsPerPage": "Items per page",
|
|
93
93
|
"loading": "Loading",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Select a provider",
|
|
141
141
|
"selectService": "Select a service",
|
|
142
142
|
"service": "Service",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Service name",
|
|
144
|
-
"serviceType": "Service Type",
|
|
145
145
|
"serviceUnavailable": "Appointment time is outside of service hours",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/pl.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Gender",
|
|
87
87
|
"highestServiceVolume": "Highest volume service: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identifier",
|
|
90
89
|
"invalidNumber": "Number is not valid",
|
|
90
|
+
"identifier": "Identifier",
|
|
91
91
|
"isRecurringAppointment": "Is this a recurring appointment?",
|
|
92
92
|
"itemsPerPage": "Items per page",
|
|
93
93
|
"loading": "Loading",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Select a provider",
|
|
141
141
|
"selectService": "Select a service",
|
|
142
142
|
"service": "Service",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Service name",
|
|
144
|
-
"serviceType": "Service Type",
|
|
145
145
|
"serviceUnavailable": "Appointment time is outside of service hours",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/pt.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Sexo",
|
|
87
87
|
"highestServiceVolume": "Serviço de maior volume: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identificador",
|
|
90
89
|
"invalidNumber": "Número não é válido",
|
|
90
|
+
"identifier": "Identificador",
|
|
91
91
|
"isRecurringAppointment": "Esta é uma consulta recorrente?",
|
|
92
92
|
"itemsPerPage": "Itens por página",
|
|
93
93
|
"loading": "Carregando",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Selecione um provedor",
|
|
141
141
|
"selectService": "Selecione um serviço",
|
|
142
142
|
"service": "Serviço",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Nome do serviço",
|
|
144
|
-
"serviceType": "Tipo de Serviço",
|
|
145
145
|
"serviceUnavailable": "A hora da consulta está fora do horário de atendimento",
|
|
146
146
|
"status": "Estado",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/pt_BR.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Sexo",
|
|
87
87
|
"highestServiceVolume": "Serviço de maior volume: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identificador",
|
|
90
89
|
"invalidNumber": "Número não é válido",
|
|
90
|
+
"identifier": "Identificador",
|
|
91
91
|
"isRecurringAppointment": "Esta é uma consulta recorrente?",
|
|
92
92
|
"itemsPerPage": "Itens por página",
|
|
93
93
|
"loading": "Carregando",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Selecione um profissional",
|
|
141
141
|
"selectService": "Selecione um serviço",
|
|
142
142
|
"service": "Serviço",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Nome do serviço",
|
|
144
|
-
"serviceType": "Tipo de Serviço",
|
|
145
145
|
"serviceUnavailable": "O horário da consulta está fora do horário de atendimento",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/qu.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Gender",
|
|
87
87
|
"highestServiceVolume": "Highest volume service: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identifier",
|
|
90
89
|
"invalidNumber": "Number is not valid",
|
|
90
|
+
"identifier": "Identifier",
|
|
91
91
|
"isRecurringAppointment": "Is this a recurring appointment?",
|
|
92
92
|
"itemsPerPage": "Items per page",
|
|
93
93
|
"loading": "Loading",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Select a provider",
|
|
141
141
|
"selectService": "Select a service",
|
|
142
142
|
"service": "Service",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Service name",
|
|
144
|
-
"serviceType": "Service Type",
|
|
145
145
|
"serviceUnavailable": "Appointment time is outside of service hours",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/ro_RO.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Gen",
|
|
87
87
|
"highestServiceVolume": "Serviciul cu cel mai mare volum: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Serviciul cu cel mai mare volum",
|
|
89
|
-
"identifier": "Identificator",
|
|
90
89
|
"invalidNumber": "Număr invalid",
|
|
90
|
+
"identifier": "Identificator",
|
|
91
91
|
"isRecurringAppointment": "Aceasta este o programare recurentă?",
|
|
92
92
|
"itemsPerPage": "Elemente pe pagină",
|
|
93
93
|
"loading": "Se încarcă",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Selectează furnizor",
|
|
141
141
|
"selectService": "Selectează serviciu",
|
|
142
142
|
"service": "Serviciu",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Nume serviciu",
|
|
144
|
-
"serviceType": "Tip serviciu",
|
|
145
145
|
"serviceUnavailable": "Ora programării este în afara orelor de lucru ale serviciului",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "DUM",
|
package/translations/ru_RU.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Gender",
|
|
87
87
|
"highestServiceVolume": "Highest volume service: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identifier",
|
|
90
89
|
"invalidNumber": "Number is not valid",
|
|
90
|
+
"identifier": "Identifier",
|
|
91
91
|
"isRecurringAppointment": "Is this a recurring appointment?",
|
|
92
92
|
"itemsPerPage": "Items per page",
|
|
93
93
|
"loading": "Loading",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Select a provider",
|
|
141
141
|
"selectService": "Select a service",
|
|
142
142
|
"service": "Service",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Service name",
|
|
144
|
-
"serviceType": "Service Type",
|
|
145
145
|
"serviceUnavailable": "Appointment time is outside of service hours",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|
package/translations/si.json
CHANGED
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"gender": "Gender",
|
|
87
87
|
"highestServiceVolume": "Highest volume service: {{time}}",
|
|
88
88
|
"highestServiceVolumeCardTitle": "Highest volume service",
|
|
89
|
-
"identifier": "Identifier",
|
|
90
89
|
"invalidNumber": "Number is not valid",
|
|
90
|
+
"identifier": "Identifier",
|
|
91
91
|
"isRecurringAppointment": "Is this a recurring appointment?",
|
|
92
92
|
"itemsPerPage": "Items per page",
|
|
93
93
|
"loading": "Loading",
|
|
@@ -140,8 +140,8 @@
|
|
|
140
140
|
"selectProvider": "Select a provider",
|
|
141
141
|
"selectService": "Select a service",
|
|
142
142
|
"service": "Service",
|
|
143
|
+
"serviceType":"Service type",
|
|
143
144
|
"serviceName": "Service name",
|
|
144
|
-
"serviceType": "Service Type",
|
|
145
145
|
"serviceUnavailable": "Appointment time is outside of service hours",
|
|
146
146
|
"status": "Status",
|
|
147
147
|
"SUN": "SUN",
|