PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 2.4.6
Booking for Appointments and Events Calendar – Amelia v2.4.6
2.4.7 2.4.6 2.4.5 2.4.4 2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.28 1.2.29 1.2.3 1.2.30 1.2.31 1.2.32 1.2.33 1.2.34 1.2.35 1.2.36 1.2.37 1.2.38 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.3
ameliabooking / v3 / src / assets / js / common / defaultCustomize.js
ameliabooking / v3 / src / assets / js / common Last commit date
appointments.js 1 month ago attendees.js 1 month ago colorManipulation.js 1 month ago customer.js 1 month ago date.js 3 weeks ago defaultCustomize.js 3 weeks ago employee.js 6 days ago events.js 1 month ago formFieldsTemplates.js 1 month ago formatting.js 1 month ago helper.js 6 days ago image.js 1 month ago integrationApple.js 1 month ago integrationGoogle.js 1 month ago integrationOutlook.js 1 month ago integrationStripe.js 1 month ago integrationZoom.js 1 month ago licence.js 1 month ago liveAnnouncer.js 3 weeks ago phone.js 3 weeks ago pricing.js 1 month ago recurring.js 6 days ago responsive.js 1 month ago scrollElements.js 1 month ago settings.js 1 month ago translationsElementPlus.js 1 month ago utilHeaderHeight.js 1 month ago
defaultCustomize.js
3996 lines
1 import { reactive } from 'vue'
2
3 const globalLabels = reactive(window.wpAmeliaLabels)
4
5 // * sbsNew - step by step new
6 // * cbf - catalog booking form
7 // * elf - events list form
8 // * ecf - events calendar form
9 // * capc - cabinet panel customer
10 // * cape - cabinet panel employee
11
12 let defaultCustomizeSettings = {
13 fonts: {
14 fontFamily: 'Amelia Roboto, sans-serif',
15 fontUrl: '',
16 customFontFamily: '',
17 customFontSelected: false,
18 },
19 sbsNew: {
20 colors: {
21 colorPrimary: '#1246D6',
22 colorSuccess: '#019719',
23 colorError: '#B4190F',
24 colorWarning: '#CCA20C',
25 colorInpBgr: '#FFFFFF',
26 colorInpBorder: '#D1D5D7',
27 colorInpText: '#1A2C37',
28 colorInpPlaceHolder: '#808A90',
29 colorDropBgr: '#FFFFFF',
30 colorDropBorder: '#FFFFFF',
31 colorDropText: '#0E1920',
32 colorSbBgr: '#17295A',
33 colorSbText: '#FFFFFF',
34 colorMainBgr: '#FFFFFF',
35 colorMainHeadingText: '#33434C',
36 colorMainText: '#1A2C37',
37 colorCalCell: '#265CF2',
38 colorCalCellText: '#1246D6',
39 colorCalCellLow: '#265CF2',
40 colorCalCellLowText: '#1246D6',
41 colorCalCellHigh: '#265CF2',
42 colorCalCellHighText: '#1246D6',
43 colorCalCellWaiting: 'rgba(26, 44, 55, 0.04)',
44 colorCalCellWaitingText: '#1A2C37',
45 colorCalCellSelected: '#1246D6',
46 colorCalCellSelectedText: '#FFFFFF',
47 colorCalCellDisabled: 'rgba(87, 88, 139, 0.05)',
48 colorCalCellDisabledText: '#8C959A',
49 colorBtnPrim: '#265CF2',
50 colorBtnPrimText: '#FFFFFF',
51 colorBtnSec: '#1A2C37',
52 colorBtnSecText: '#FFFFFF',
53 },
54 order: [
55 {
56 id: 'ServiceStep',
57 },
58 {
59 id: 'EmployeeStep',
60 },
61 {
62 id: 'LocationStep',
63 },
64 ],
65 initStep: {
66 options: {
67 service: {
68 name: globalLabels.service_input_field,
69 filterable: true,
70 },
71 tax: {
72 name: globalLabels.tax_visibility,
73 visibility: true,
74 },
75 location: {
76 name: globalLabels.location_input_field,
77 required: false,
78 visibility: true,
79 filterable: true,
80 },
81 employee: {
82 name: globalLabels.employee_input_field,
83 required: false,
84 visibility: true,
85 filterable: true,
86 },
87 primaryFooterButton: {
88 name: globalLabels.continue_button_type,
89 buttonType: 'filled',
90 typeOptions: ['filled', 'plain', 'text'],
91 },
92 },
93 order: [
94 {
95 name: globalLabels.service,
96 id: 'service',
97 },
98 {
99 name: globalLabels.employee,
100 id: 'employee',
101 },
102 {
103 name: globalLabels.location,
104 id: 'location',
105 },
106 ],
107 translations: null,
108 },
109 serviceStep: {
110 options: {
111 search: {
112 name: globalLabels.search_input_field,
113 visibility: true,
114 },
115 category: {
116 name: globalLabels.category_input_field,
117 visibility: true,
118 filterable: true,
119 },
120 price: {
121 name: globalLabels.service_price,
122 visibility: true,
123 },
124 tax: {
125 name: globalLabels.tax_visibility,
126 visibility: true,
127 },
128 serviceCategory: {
129 name: globalLabels.service_category,
130 visibility: true,
131 },
132 serviceDuration: {
133 name: globalLabels.service_duration,
134 visibility: true,
135 },
136 serviceCapacity: {
137 name: globalLabels.service_capacity,
138 visibility: true,
139 },
140 serviceLocation: {
141 name: globalLabels.service_location,
142 visibility: true,
143 },
144 moreBtn: {
145 name: globalLabels.learn_more_button,
146 visibility: true,
147 },
148 packagesBtn: {
149 name: globalLabels.view_in_package_buttons,
150 visibility: true,
151 },
152 primaryFooterButton: {
153 name: globalLabels.continue_button_type,
154 buttonType: 'filled',
155 typeOptions: ['filled', 'plain', 'text'],
156 },
157 },
158 translations: null,
159 },
160 employeeStep: {
161 options: {
162 employee: {
163 name: globalLabels.employee_selection,
164 required: false,
165 visibility: true,
166 },
167 price: {
168 name: globalLabels.employee_price,
169 visibility: true,
170 },
171 moreBtn: {
172 name: globalLabels.learn_more_button,
173 visibility: true,
174 },
175 primaryFooterButton: {
176 name: globalLabels.continue_button_type,
177 buttonType: 'filled',
178 typeOptions: ['filled', 'plain', 'text'],
179 },
180 },
181 translations: null,
182 },
183 locationStep: {
184 options: {
185 location: {
186 name: globalLabels.location_selection,
187 required: false,
188 visibility: true,
189 },
190 address: {
191 name: globalLabels.location_address,
192 visibility: true,
193 },
194 moreBtn: {
195 name: globalLabels.learn_more_button,
196 visibility: true,
197 },
198 primaryFooterButton: {
199 name: globalLabels.continue_button_type,
200 buttonType: 'filled',
201 typeOptions: ['filled', 'plain', 'text'],
202 },
203 },
204 translations: null,
205 },
206 bringingAnyone: {
207 options: {
208 heading: {
209 name: globalLabels.heading,
210 visibility: true,
211 },
212 info: {
213 name: globalLabels.info,
214 visibility: true,
215 },
216 bringingPrice: {
217 name: globalLabels.bringing_price,
218 visibility: true,
219 },
220 primaryButton: {
221 name: globalLabels.primary_button_type,
222 buttonType: 'filled',
223 typeOptions: ['filled', 'plain', 'text'],
224 },
225 secondaryButton: {
226 name: globalLabels.secondary_button_type,
227 buttonType: 'text',
228 typeOptions: ['filled', 'plain', 'text'],
229 },
230 primaryFooterButton: {
231 name: globalLabels.continue_button_type,
232 buttonType: 'filled',
233 typeOptions: ['filled', 'plain', 'text'],
234 },
235 },
236 translations: null,
237 },
238 packageStep: {
239 options: {
240 heading: {
241 name: globalLabels.popup_heading,
242 visibility: true,
243 },
244 tax: {
245 name: globalLabels.tax_visibility,
246 visibility: true,
247 },
248 primaryButton: {
249 name: globalLabels.primary_button_type,
250 buttonType: 'filled',
251 typeOptions: ['filled', 'plain', 'text'],
252 },
253 primaryFooterButton: {
254 name: globalLabels.continue_button_type,
255 buttonType: 'filled',
256 typeOptions: ['filled', 'plain', 'text'],
257 },
258 },
259 translations: null,
260 },
261 packageInfoStep: {
262 options: {
263 primaryFooterButton: {
264 name: globalLabels.continue_button_type,
265 buttonType: 'filled',
266 typeOptions: ['filled', 'plain', 'text'],
267 },
268 tax: {
269 name: globalLabels.tax_visibility,
270 visibility: true,
271 },
272 },
273 translations: null,
274 },
275 packageAppointmentsStep: {
276 options: {
277 employee: {
278 name: globalLabels.employee_input_field,
279 required: false,
280 visibility: true,
281 },
282 location: {
283 name: globalLabels.location_input_field,
284 required: false,
285 visibility: true,
286 },
287 endTimeVisibility: {
288 name: globalLabels.calendar_slot_end_time,
289 visibility: true,
290 },
291 timeZoneVisibility: {
292 name: globalLabels.calendar_time_zone,
293 visibility: true,
294 },
295 busyTimeSlotsVisibility: {
296 name: globalLabels.show_busy_slots,
297 visibility: false,
298 },
299 calendarDateBusynessVisibility: {
300 name: globalLabels.show_calendar_date_busyness,
301 visibility: true,
302 },
303 primaryFooterButton: {
304 name: globalLabels.continue_button_type,
305 buttonType: 'filled',
306 typeOptions: ['filled', 'plain', 'text'],
307 },
308 },
309 translations: null,
310 },
311 packageAppointmentsListStep: {
312 options: {
313 primaryFooterButton: {
314 name: globalLabels.continue_button_type,
315 buttonType: 'filled',
316 typeOptions: ['filled', 'plain', 'text'],
317 },
318 tax: {
319 name: globalLabels.tax_visibility,
320 visibility: true,
321 },
322 },
323 translations: null,
324 },
325 extrasStep: {
326 options: {
327 heading: {
328 name: globalLabels.extras_heading,
329 visibility: true,
330 },
331 description: {
332 name: globalLabels.extras_description,
333 visibility: true,
334 },
335 tax: {
336 name: globalLabels.tax_visibility,
337 visibility: true,
338 },
339 duration: {
340 name: globalLabels.extras_duration,
341 visibility: true,
342 },
343 primaryFooterButton: {
344 name: globalLabels.continue_button_type,
345 buttonType: 'filled',
346 typeOptions: ['filled', 'plain', 'text'],
347 },
348 },
349 translations: null,
350 },
351 dateTimeStep: {
352 options: {
353 endTimeVisibility: {
354 name: globalLabels.calendar_slot_end_time,
355 visibility: true,
356 },
357 timeZoneVisibility: {
358 name: globalLabels.calendar_time_zone,
359 visibility: true,
360 },
361 estimatedPricingVisibility: {
362 name: globalLabels.show_estimated_pricing,
363 visibility: false,
364 },
365 slotPricingVisibility: {
366 name: globalLabels.show_slot_pricing,
367 visibility: false,
368 },
369 indicatorPricingVisibility: {
370 name: globalLabels.show_indicator_pricing,
371 visibility: false,
372 },
373 peopleWaitingVisibility: {
374 name: globalLabels.show_people_waiting,
375 visibility: true,
376 },
377 busyTimeSlotsVisibility: {
378 name: globalLabels.show_busy_slots,
379 visibility: false,
380 },
381 calendarDateBusynessVisibility: {
382 name: globalLabels.show_calendar_date_busyness,
383 visibility: true,
384 },
385 primaryFooterButton: {
386 name: globalLabels.continue_button_type,
387 buttonType: 'filled',
388 typeOptions: ['filled', 'plain', 'text'],
389 },
390 },
391 translations: null,
392 },
393 cartStep: {
394 options: {
395 addToCart: {
396 name: globalLabels.add_to_cart_button_type,
397 buttonType: 'text',
398 typeOptions: ['filled', 'plain', 'text'],
399 },
400 backToCart: {
401 name: globalLabels.back_to_cart_button_type,
402 buttonType: 'text',
403 typeOptions: ['filled', 'plain', 'text'],
404 },
405 tax: {
406 name: globalLabels.tax_visibility,
407 visibility: true,
408 },
409 primaryFooterButton: {
410 name: globalLabels.continue_button_type,
411 buttonType: 'filled',
412 typeOptions: ['filled', 'plain', 'text'],
413 },
414 },
415 translations: null,
416 },
417 recurringPopup: {
418 options: {
419 content: {
420 name: globalLabels.popup_content,
421 visibility: true,
422 },
423 primaryButton: {
424 name: globalLabels.primary_button_type,
425 buttonType: 'filled',
426 typeOptions: ['filled', 'plain', 'text'],
427 },
428 secondaryButton: {
429 name: globalLabels.secondary_button_type,
430 buttonType: 'text',
431 typeOptions: ['filled', 'plain', 'text'],
432 },
433 },
434 translations: null,
435 },
436 recurringStep: {
437 options: {
438 heading: {
439 name: globalLabels.heading_content,
440 visibility: true,
441 },
442 primaryFooterButton: {
443 name: globalLabels.continue_button_type,
444 buttonType: 'filled',
445 typeOptions: ['filled', 'plain', 'text'],
446 },
447 },
448 translations: null,
449 },
450 recurringSummary: {
451 options: {
452 endTimeVisibility: {
453 name: globalLabels.calendar_slot_end_time,
454 visibility: true,
455 },
456 timeZoneVisibility: {
457 name: globalLabels.calendar_time_zone,
458 visibility: true,
459 },
460 estimatedPricingVisibility: {
461 name: globalLabels.show_estimated_pricing,
462 visibility: false,
463 },
464 slotPricingVisibility: {
465 name: globalLabels.show_slot_pricing,
466 visibility: false,
467 },
468 indicatorPricingVisibility: {
469 name: globalLabels.show_indicator_pricing,
470 visibility: false,
471 },
472 busyTimeSlotsVisibility: {
473 name: globalLabels.show_busy_slots,
474 visibility: false,
475 },
476 calendarDateBusynessVisibility: {
477 name: globalLabels.show_calendar_date_busyness,
478 visibility: true,
479 },
480 primaryFooterButton: {
481 name: globalLabels.continue_button_type,
482 buttonType: 'filled',
483 typeOptions: ['filled', 'plain', 'text'],
484 },
485 },
486 translations: null,
487 },
488 infoStep: {
489 order: [
490 {
491 name: globalLabels.first_name,
492 id: 'firstName',
493 },
494 {
495 name: globalLabels.last_name,
496 id: 'lastName',
497 },
498 {
499 name: globalLabels.email,
500 id: 'email',
501 },
502 {
503 name: globalLabels.phone,
504 id: 'phone',
505 },
506 ],
507 options: {
508 lastName: {
509 name: globalLabels.last_name_input_field,
510 required: true,
511 visibility: true,
512 },
513 email: {
514 name: globalLabels.email_input_field,
515 required: false,
516 visibility: true,
517 },
518 phone: {
519 name: globalLabels.phone_input_field,
520 required: false,
521 visibility: true,
522 },
523 primaryFooterButton: {
524 name: globalLabels.continue_button_type,
525 buttonType: 'filled',
526 typeOptions: ['filled', 'plain', 'text'],
527 },
528 },
529 translations: null,
530 },
531 paymentStep: {
532 options: {
533 coupon: {
534 name: globalLabels.coupon_input_field,
535 required: false,
536 },
537 primaryFooterButton: {
538 name: globalLabels.continue_button_type,
539 buttonType: 'filled',
540 typeOptions: ['filled', 'plain', 'text'],
541 },
542 },
543 translations: null,
544 },
545 congratulations: {
546 options: {
547 primaryFooterButton: {
548 name: globalLabels.finish_button_type,
549 buttonType: 'filled',
550 typeOptions: ['filled', 'plain', 'text'],
551 },
552 secondaryFooterButton: {
553 name: globalLabels.panel_button_type,
554 buttonType: 'text',
555 typeOptions: ['filled', 'plain', 'text'],
556 },
557 },
558 translations: null,
559 },
560 sidebar: {
561 options: {
562 self: {
563 name: globalLabels.sidebar_visibility,
564 visibility: true,
565 },
566 supportHeading: {
567 name: globalLabels.support_heading,
568 visibility: true,
569 },
570 companyPhone: {
571 name: globalLabels.company_phone,
572 visibility: true,
573 },
574 companyEmail: {
575 name: globalLabels.company_email,
576 visibility: true,
577 },
578 },
579 translations: null,
580 },
581 },
582 cbf: {
583 colors: {
584 colorPrimary: '#1246D6',
585 colorSuccess: '#019719',
586 colorError: '#B4190F',
587 colorWarning: '#CCA20C',
588 colorInpBgr: '#FFFFFF',
589 colorInpBorder: '#D1D5D7',
590 colorInpText: '#1A2C37',
591 colorInpPlaceHolder: '#808A90',
592 colorDropBgr: '#FFFFFF',
593 colorDropBorder: '#FFFFFF',
594 colorDropText: '#0E1920',
595 colorSbBgr: '#FFFFFF',
596 colorSbText: '#1A2C37',
597 colorMainBgr: '#FFFFFF',
598 colorMainHeadingText: '#33434C',
599 colorMainText: '#1A2C37',
600 colorCalCell: '#265CF2',
601 colorCalCellText: '#1246D6',
602 colorCalCellSelected: '#1246D6',
603 colorCalCellSelectedText: '#FFFFFF',
604 colorCalCellDisabled: 'rgba(87, 88, 139, 0.05)',
605 colorCalCellDisabledText: '#8C959A',
606 colorCardBgr: '#FFFFFF',
607 colorCardBorder: '#D1D5D7',
608 colorCardText: '#1A2C37',
609 colorBtnPrim: '#265CF2',
610 colorBtnPrimText: '#FFFFFF',
611 colorBtnSec: '#1A2C37',
612 colorBtnSecText: '#FFFFFF',
613 },
614 categoriesList: {
615 options: {
616 cardSideColor: {
617 name: globalLabels.cl_side_color,
618 visibility: true,
619 },
620 cardColor: {
621 name: globalLabels.cl_color,
622 visibility: false,
623 },
624 cardButton: {
625 name: globalLabels.card_button_type,
626 buttonType: 'plain',
627 typeOptions: ['filled', 'plain', 'text'],
628 },
629 services: {
630 name: globalLabels.card_services_number,
631 visibility: true,
632 },
633 packages: {
634 name: globalLabels.card_packages_number,
635 visibility: true,
636 },
637 },
638 translations: null,
639 },
640 categoryItemsList: {
641 options: {
642 backBtn: {
643 name: globalLabels.back_btn_type,
644 buttonType: 'plain',
645 typeOptions: ['filled', 'plain', 'text'],
646 },
647 filterMenuBtn: {
648 name: globalLabels.cil_filter_menu_btn,
649 buttonType: 'plain',
650 typeOptions: ['filled', 'plain', 'text'],
651 },
652 searchInput: {
653 name: globalLabels.cil_filter_input,
654 visibility: true,
655 },
656 filterEmployee: {
657 name: globalLabels.cil_filter_employee,
658 visibility: true,
659 },
660 filterLocation: {
661 name: globalLabels.cil_filter_location,
662 visibility: true,
663 },
664 filterButtons: {
665 name: globalLabels.cil_filter_buttons,
666 visibility: true,
667 },
668 sidebar: {
669 name: globalLabels.cil_sidebar,
670 visibility: true,
671 },
672 cardColor: {
673 name: globalLabels.cli_item_color,
674 visibility: false,
675 },
676 packageBadge: {
677 name: globalLabels.package_badge,
678 visibility: true,
679 },
680 packagePrice: {
681 name: globalLabels.package_price,
682 visibility: true,
683 },
684 tax: {
685 name: globalLabels.tax_visibility,
686 visibility: true,
687 },
688 packageCategory: {
689 name: globalLabels.package_category,
690 visibility: true,
691 },
692 packageDuration: {
693 name: globalLabels.package_duration,
694 visibility: true,
695 },
696 packageCapacity: {
697 name: globalLabels.package_capacity,
698 visibility: true,
699 },
700 packageLocation: {
701 name: globalLabels.package_location,
702 visibility: true,
703 },
704 packageServices: {
705 name: globalLabels.package_services_list,
706 visibility: true,
707 },
708 serviceBadge: {
709 name: globalLabels.service_badge,
710 visibility: true,
711 },
712 servicePrice: {
713 name: globalLabels.service_price,
714 visibility: true,
715 },
716 serviceCategory: {
717 name: globalLabels.service_category,
718 visibility: true,
719 },
720 serviceDuration: {
721 name: globalLabels.service_duration,
722 visibility: true,
723 },
724 serviceCapacity: {
725 name: globalLabels.service_capacity,
726 visibility: true,
727 },
728 serviceLocation: {
729 name: globalLabels.service_location,
730 visibility: true,
731 },
732 cardEmployeeBtn: {
733 name: globalLabels.employee_btn_type,
734 visibility: true,
735 buttonType: 'text',
736 typeOptions: ['filled', 'plain', 'text'],
737 },
738 dialogEmployeeBtn: {
739 name: globalLabels.book_employee_btn_type,
740 visibility: true,
741 buttonType: 'filled',
742 typeOptions: ['filled', 'plain', 'text'],
743 },
744 cardContinueBtn: {
745 name: globalLabels.continue_button_type,
746 buttonType: 'filled',
747 typeOptions: ['filled', 'plain', 'text'],
748 },
749 pageScroll: {
750 name: globalLabels.page_scroll_visibility,
751 visibility: true,
752 },
753 },
754 translations: null,
755 },
756 categoryService: {
757 options: {
758 backBtn: {
759 name: globalLabels.back_btn_type,
760 buttonType: 'plain',
761 typeOptions: ['filled', 'plain', 'text'],
762 },
763 bookingBtn: {
764 name: globalLabels.booking_btn_type,
765 buttonType: 'filled',
766 typeOptions: ['filled', 'plain', 'text'],
767 },
768 serviceBadge: {
769 name: globalLabels.service_badge,
770 visibility: true,
771 },
772 servicePrice: {
773 name: globalLabels.service_price,
774 visibility: true,
775 },
776 tax: {
777 name: globalLabels.tax_visibility,
778 visibility: true,
779 },
780 serviceCategory: {
781 name: globalLabels.service_category,
782 visibility: true,
783 },
784 serviceDuration: {
785 name: globalLabels.service_duration,
786 visibility: true,
787 },
788 serviceCapacity: {
789 name: globalLabels.service_capacity,
790 visibility: true,
791 },
792 serviceLocation: {
793 name: globalLabels.service_location,
794 visibility: true,
795 },
796 serviceDescription: {
797 name: globalLabels.service_about,
798 visibility: true,
799 },
800 serviceEmployees: {
801 name: globalLabels.service_employees,
802 visibility: true,
803 },
804 serviceEmployeePrice: {
805 name: globalLabels.employee_price,
806 visibility: true,
807 },
808 servicePackages: {
809 name: globalLabels.package_block,
810 visibility: true,
811 },
812 packagePrice: {
813 name: globalLabels.package_price,
814 visibility: true,
815 },
816 packageCategory: {
817 name: globalLabels.package_category,
818 visibility: true,
819 },
820 packageDuration: {
821 name: globalLabels.package_duration,
822 visibility: true,
823 },
824 packageCapacity: {
825 name: globalLabels.package_capacity,
826 visibility: true,
827 },
828 packageLocation: {
829 name: globalLabels.package_location,
830 visibility: true,
831 },
832 packageServices: {
833 name: globalLabels.package_services_list,
834 visibility: true,
835 },
836 pageScroll: {
837 name: globalLabels.page_scroll_visibility,
838 visibility: true,
839 },
840 },
841 translations: null,
842 },
843 categoryPackage: {
844 options: {
845 backBtn: {
846 name: globalLabels.back_btn_type,
847 buttonType: 'plain',
848 typeOptions: ['filled', 'plain', 'text'],
849 },
850 bookingBtn: {
851 name: globalLabels.booking_btn_type,
852 buttonType: 'filled',
853 typeOptions: ['filled', 'plain', 'text'],
854 },
855 packageBadge: {
856 name: globalLabels.package_badge,
857 visibility: true,
858 },
859 packagePrice: {
860 name: globalLabels.package_price,
861 visibility: true,
862 },
863 tax: {
864 name: globalLabels.tax_visibility,
865 visibility: true,
866 },
867 packageCategory: {
868 name: globalLabels.package_category,
869 visibility: true,
870 },
871 packageDuration: {
872 name: globalLabels.package_duration,
873 visibility: true,
874 },
875 packageCapacity: {
876 name: globalLabels.package_capacity,
877 visibility: true,
878 },
879 packageLocation: {
880 name: globalLabels.package_location,
881 visibility: true,
882 },
883 packageDescription: {
884 name: globalLabels.package_about,
885 visibility: true,
886 },
887 packageEmployees: {
888 name: globalLabels.package_employees,
889 visibility: true,
890 },
891 packageServices: {
892 name: globalLabels.package_services_list,
893 visibility: true,
894 },
895 pageScroll: {
896 name: globalLabels.page_scroll_visibility,
897 visibility: true,
898 },
899 },
900 translations: null,
901 },
902 },
903 elf: {
904 colors: {
905 colorPrimary: '#1246D6',
906 colorSuccess: '#019719',
907 colorError: '#B4190F',
908 colorWarning: '#CCA20C',
909 colorInpBgr: '#FFFFFF',
910 colorInpBorder: '#D1D5D7',
911 colorInpText: '#1A2C37',
912 colorInpPlaceHolder: '#808A90',
913 colorDropBgr: '#FFFFFF',
914 colorDropBorder: '#FFFFFF',
915 colorDropText: '#0E1920',
916 colorMainBgr: '#FFFFFF',
917 colorMainHeadingText: '#33434C',
918 colorMainText: '#1A2C37',
919 colorCalCell: '#265CF2',
920 colorCalCellText: '#1246D6',
921 colorCalCellSelected: '#1246D6',
922 colorCalCellSelectedText: '#FFFFFF',
923 colorCalCellDisabled: 'rgba(87, 88, 139, 0.05)',
924 colorCalCellDisabledText: '#8C959A',
925 colorCardBgr: '#FFFFFF',
926 colorCardBorder: '#D1D5D7',
927 colorCardText: '#1A2C37',
928 colorBtnPrim: '#265CF2',
929 colorBtnPrimText: '#FFFFFF',
930 colorBtnSec: '#1A2C37',
931 colorBtnSecText: '#FFFFFF',
932 colorBtnWaiting: '#CCA20C',
933 colorBtnWaitingText: '#FFFFFF',
934 },
935 list: {
936 options: {
937 header: {
938 name: globalLabels.step_title,
939 visibility: true,
940 },
941 filters: {
942 name: globalLabels.step_filters,
943 visibility: true,
944 },
945 imgTab: {
946 name: globalLabels.event_tab_img,
947 visibility: true,
948 },
949 location: {
950 name: globalLabels.event_location,
951 visibility: true,
952 },
953 slots: {
954 name: globalLabels.event_slots_capacity,
955 visibility: true,
956 },
957 price: {
958 name: globalLabels.event_price,
959 visibility: true,
960 },
961 tax: {
962 name: globalLabels.tax_visibility,
963 visibility: true,
964 },
965 status: {
966 name: globalLabels.event_status,
967 visibility: true,
968 },
969 filterBtn: {
970 name: globalLabels.filters_button_type,
971 buttonType: 'plain',
972 typeOptions: ['filled', 'plain', 'text'],
973 },
974 bookingBtn: {
975 name: globalLabels.read_more_button_type,
976 buttonType: 'filled',
977 typeOptions: ['filled', 'plain', 'text'],
978 },
979 infoBtn: {
980 name: globalLabels.learn_more_button_type,
981 buttonType: 'plain',
982 typeOptions: ['filled', 'plain', 'text'],
983 },
984 waitingBtn: {
985 name: globalLabels.booking_waiting_btn,
986 buttonType: 'filled',
987 typeOptions: ['filled', 'plain', 'text'],
988 },
989 },
990 translations: null,
991 },
992 info: {
993 options: {
994 gallery: {
995 name: globalLabels.event_gallery,
996 visibility: true,
997 },
998 location: {
999 name: globalLabels.event_location,
1000 visibility: true,
1001 },
1002 slots: {
1003 name: globalLabels.event_slots_capacity,
1004 visibility: true,
1005 },
1006 price: {
1007 name: globalLabels.event_price,
1008 visibility: true,
1009 },
1010 tax: {
1011 name: globalLabels.tax_visibility,
1012 visibility: true,
1013 },
1014 status: {
1015 name: globalLabels.event_status,
1016 visibility: true,
1017 },
1018 eventDescription: {
1019 name: globalLabels.event_description,
1020 visibility: true,
1021 },
1022 eventOrganizer: {
1023 name: globalLabels.event_organizer,
1024 visibility: true,
1025 },
1026 eventEmployees: {
1027 name: globalLabels.event_employees,
1028 visibility: true,
1029 },
1030 primBtn: {
1031 name: globalLabels.booking_event_btn,
1032 buttonType: 'filled',
1033 typeOptions: ['filled', 'plain', 'text'],
1034 },
1035 secBtn: {
1036 name: globalLabels.close_event_btn,
1037 visibility: true,
1038 buttonType: 'plain',
1039 typeOptions: ['filled', 'plain', 'text'],
1040 },
1041 waitingBtn: {
1042 name: globalLabels.booking_waiting_btn,
1043 buttonType: 'filled',
1044 typeOptions: ['filled', 'plain', 'text'],
1045 },
1046 },
1047 translations: null,
1048 },
1049 bringingAnyone: {
1050 options: {
1051 primBtn: {
1052 name: globalLabels.booking_event_btn,
1053 buttonType: 'filled',
1054 typeOptions: ['filled', 'plain', 'text'],
1055 },
1056 secBtn: {
1057 name: globalLabels.close_event_btn,
1058 buttonType: 'plain',
1059 typeOptions: ['filled', 'plain', 'text'],
1060 },
1061 },
1062 translations: null,
1063 },
1064 tickets: {
1065 options: {
1066 primBtn: {
1067 name: globalLabels.booking_event_btn,
1068 buttonType: 'filled',
1069 typeOptions: ['filled', 'plain', 'text'],
1070 },
1071 secBtn: {
1072 name: globalLabels.close_event_btn,
1073 visibility: true,
1074 buttonType: 'plain',
1075 typeOptions: ['filled', 'plain', 'text'],
1076 },
1077 },
1078 translations: null,
1079 },
1080 customerInfo: {
1081 order: [
1082 {
1083 name: globalLabels.first_name,
1084 id: 'firstName',
1085 },
1086 {
1087 name: globalLabels.last_name,
1088 id: 'lastName',
1089 },
1090 {
1091 name: globalLabels.email,
1092 id: 'email',
1093 },
1094 {
1095 name: globalLabels.phone,
1096 id: 'phone',
1097 },
1098 ],
1099 options: {
1100 lastName: {
1101 name: globalLabels.last_name_input_field,
1102 required: true,
1103 visibility: true,
1104 },
1105 email: {
1106 name: globalLabels.email_input_field,
1107 required: false,
1108 visibility: true,
1109 },
1110 phone: {
1111 name: globalLabels.phone_input_field,
1112 required: false,
1113 visibility: true,
1114 },
1115 primBtn: {
1116 name: globalLabels.booking_event_btn,
1117 buttonType: 'filled',
1118 typeOptions: ['filled', 'plain', 'text'],
1119 },
1120 secBtn: {
1121 name: globalLabels.close_event_btn,
1122 visibility: true,
1123 buttonType: 'plain',
1124 typeOptions: ['filled', 'plain', 'text'],
1125 },
1126 },
1127 translations: null,
1128 },
1129 payment: {
1130 options: {
1131 coupon: {
1132 name: globalLabels.coupon_input_field,
1133 required: false,
1134 },
1135 primBtn: {
1136 name: globalLabels.booking_event_btn,
1137 buttonType: 'filled',
1138 typeOptions: ['filled', 'plain', 'text'],
1139 },
1140 secBtn: {
1141 name: globalLabels.close_event_btn,
1142 visibility: true,
1143 buttonType: 'plain',
1144 typeOptions: ['filled', 'plain', 'text'],
1145 },
1146 },
1147 translations: null,
1148 },
1149 congrats: {
1150 options: {
1151 primBtn: {
1152 name: globalLabels.finish_event_btn,
1153 buttonType: 'filled',
1154 typeOptions: ['filled', 'plain', 'text'],
1155 },
1156 secBtn: {
1157 name: globalLabels.customer_panel_btn,
1158 visibility: true,
1159 buttonType: 'plain',
1160 typeOptions: ['filled', 'plain', 'text'],
1161 },
1162 },
1163 translations: null,
1164 },
1165 },
1166 capc: {
1167 colors: {
1168 colorPrimary: '#1246D6',
1169 colorSuccess: '#019719',
1170 colorError: '#B4190F',
1171 colorWarning: '#CCA20C',
1172 colorInpBgr: '#FFFFFF',
1173 colorInpBorder: '#D1D5D7',
1174 colorInpText: '#1A2C37',
1175 colorInpPlaceHolder: '#808A90',
1176 colorDropBgr: '#FFFFFF',
1177 colorDropBorder: '#FFFFFF',
1178 colorDropText: '#0E1920',
1179 colorSbBgr: '#17295A',
1180 colorSbText: '#FFFFFF',
1181 colorMainBgr: '#FFFFFF',
1182 colorMainHeadingText: '#33434C',
1183 colorMainText: '#1A2C37',
1184 colorCalCell: '#265CF2',
1185 colorCalCellText: '#1246D6',
1186 colorCalCellLow: '#265CF2',
1187 colorCalCellLowText: '#1246D6',
1188 colorCalCellHigh: '#265CF2',
1189 colorCalCellHighText: '#1246D6',
1190 colorCalCellSelected: '#1246D6',
1191 colorCalCellSelectedText: '#FFFFFF',
1192 colorCalCellDisabled: 'rgba(87, 88, 139, 0.05)',
1193 colorCalCellDisabledText: '#8C959A',
1194 colorBtnPrim: '#265CF2',
1195 colorBtnPrimText: '#FFFFFF',
1196 colorBtnSec: '#1A2C37',
1197 colorBtnSecText: '#FFFFFF',
1198 colorBtnDanger: '#B4190F',
1199 colorBtnDangerText: '#FFFFFF',
1200 },
1201 sidebar: {
1202 options: {
1203 toggle: {
1204 name: globalLabels.toggled_sidebar,
1205 visibility: false,
1206 },
1207 },
1208 translations: null,
1209 },
1210 profile: {
1211 order: [
1212 {
1213 name: globalLabels.first_name,
1214 id: 'firstName',
1215 },
1216 {
1217 name: globalLabels.last_name,
1218 id: 'lastName',
1219 },
1220 {
1221 name: globalLabels.email,
1222 id: 'email',
1223 },
1224 {
1225 name: globalLabels.phone,
1226 id: 'phone',
1227 },
1228 {
1229 name: globalLabels.birthday,
1230 id: 'birthday',
1231 },
1232 ],
1233 options: {
1234 lastName: {
1235 name: globalLabels.last_name_input_field,
1236 required: true,
1237 visibility: true,
1238 },
1239 email: {
1240 name: globalLabels.email_input_field,
1241 required: false,
1242 visibility: true,
1243 },
1244 phone: {
1245 name: globalLabels.phone_input_field,
1246 required: false,
1247 visibility: true,
1248 },
1249 birthday: {
1250 name: globalLabels.birthday_input_field,
1251 required: false,
1252 visibility: true,
1253 },
1254 deleteFooterButton: {
1255 name: globalLabels.delete_profile_button_type,
1256 buttonType: 'plain',
1257 typeOptions: ['filled', 'plain', 'text'],
1258 },
1259 saveFooterButton: {
1260 name: globalLabels.save_changes_button_type,
1261 buttonType: 'filled',
1262 typeOptions: ['filled', 'plain', 'text'],
1263 },
1264 passFooterButton: {
1265 name: globalLabels.change_pass_button_type,
1266 buttonType: 'filled',
1267 typeOptions: ['filled', 'plain', 'text'],
1268 },
1269 },
1270 translations: null,
1271 },
1272 deleteProfile: {
1273 options: {
1274 closeBtn: {
1275 name: globalLabels.close_button_type,
1276 buttonType: 'plain',
1277 typeOptions: ['filled', 'plain', 'text'],
1278 },
1279 confirmBtn: {
1280 name: globalLabels.confirm_button_type,
1281 buttonType: 'filled',
1282 typeOptions: ['filled', 'plain', 'text'],
1283 },
1284 },
1285 translations: null,
1286 },
1287 appointments: {
1288 options: {
1289 timeZone: {
1290 name: globalLabels.time_zone,
1291 visibility: true,
1292 },
1293 servicesFilter: {
1294 name: globalLabels.csb_cust_filter_service,
1295 visibility: true,
1296 },
1297 providersFilter: {
1298 name: globalLabels.csb_cust_filter_employee,
1299 visibility: true,
1300 },
1301 locationsFilter: {
1302 name: globalLabels.csb_cust_filter_location,
1303 visibility: true,
1304 },
1305 filterBtn: {
1306 name: globalLabels.filters_button_type,
1307 buttonType: 'filled',
1308 typeOptions: ['filled', 'plain', 'text'],
1309 },
1310 employee: {
1311 name: globalLabels.csb_cust_appointment_employee,
1312 visibility: true,
1313 },
1314 price: {
1315 name: globalLabels.appointment_price,
1316 visibility: true,
1317 },
1318 },
1319 translations: null,
1320 },
1321 rescheduleAppointment: {
1322 options: {
1323 timeZoneVisibility: {
1324 name: globalLabels.calendar_time_zone,
1325 visibility: true,
1326 },
1327 estimatedPricingVisibility: {
1328 name: globalLabels.show_estimated_pricing,
1329 visibility: false,
1330 },
1331 slotPricingVisibility: {
1332 name: globalLabels.show_slot_pricing,
1333 visibility: false,
1334 },
1335 indicatorPricingVisibility: {
1336 name: globalLabels.show_indicator_pricing,
1337 visibility: false,
1338 },
1339 endTimeVisibility: {
1340 name: globalLabels.calendar_slot_end_time,
1341 visibility: true,
1342 },
1343 cancelBtn: {
1344 name: globalLabels.cancel_button_type,
1345 buttonType: 'plain',
1346 typeOptions: ['filled', 'plain', 'text'],
1347 },
1348 continueBtn: {
1349 name: globalLabels.continue_button_type,
1350 buttonType: 'filled',
1351 typeOptions: ['filled', 'plain', 'text'],
1352 },
1353 },
1354 translations: null,
1355 },
1356 cancelAppointment: {
1357 options: {
1358 cancelBtn: {
1359 name: globalLabels.cancel_button_type,
1360 buttonType: 'plain',
1361 typeOptions: ['filled', 'plain', 'text'],
1362 },
1363 confirmBtn: {
1364 name: globalLabels.confirm_button_type,
1365 buttonType: 'filled',
1366 typeOptions: ['filled', 'plain', 'text'],
1367 },
1368 },
1369 translations: null,
1370 },
1371 events: {
1372 options: {
1373 timeZone: {
1374 name: globalLabels.time_zone,
1375 visibility: true,
1376 },
1377 eventsFilter: {
1378 name: globalLabels.csb_cust_filter_event,
1379 visibility: true,
1380 },
1381 providersFilter: {
1382 name: globalLabels.csb_cust_filter_employee,
1383 visibility: true,
1384 },
1385 locationsFilter: {
1386 name: globalLabels.csb_cust_filter_location,
1387 visibility: true,
1388 },
1389 filterBtn: {
1390 name: globalLabels.filters_button_type,
1391 buttonType: 'filled',
1392 typeOptions: ['filled', 'plain', 'text'],
1393 },
1394 employee: {
1395 name: globalLabels.csb_cust_event_employee,
1396 visibility: true,
1397 },
1398 price: {
1399 name: globalLabels.event_price,
1400 visibility: true,
1401 },
1402 },
1403 translations: null,
1404 },
1405 cancelEvent: {
1406 options: {
1407 cancelBtn: {
1408 name: globalLabels.cancel_button_type,
1409 buttonType: 'plain',
1410 typeOptions: ['filled', 'plain', 'text'],
1411 },
1412 confirmBtn: {
1413 name: globalLabels.confirm_button_type,
1414 buttonType: 'filled',
1415 typeOptions: ['filled', 'plain', 'text'],
1416 },
1417 },
1418 translations: null,
1419 },
1420 packagesList: {
1421 options: {
1422 timeZone: {
1423 name: globalLabels.time_zone,
1424 visibility: true,
1425 },
1426 packagesFilter: {
1427 name: globalLabels.csb_cust_filter_packages,
1428 visibility: true,
1429 },
1430 servicesFilter: {
1431 name: globalLabels.csb_cust_filter_service,
1432 visibility: true,
1433 },
1434 providersFilter: {
1435 name: globalLabels.csb_cust_filter_employee,
1436 visibility: true,
1437 },
1438 locationsFilter: {
1439 name: globalLabels.csb_cust_filter_location,
1440 visibility: true,
1441 },
1442 filterBtn: {
1443 name: globalLabels.filters_button_type,
1444 buttonType: 'filled',
1445 typeOptions: ['filled', 'plain', 'text'],
1446 },
1447 },
1448 translations: null,
1449 },
1450 packageAppointmentsList: {
1451 options: {
1452 backBtn: {
1453 name: globalLabels.go_back_btn_type,
1454 buttonType: 'plain',
1455 typeOptions: ['filled', 'plain', 'text'],
1456 },
1457 cancelBtn: {
1458 name: globalLabels.cancel_button_type,
1459 buttonType: 'filled',
1460 typeOptions: ['filled', 'plain', 'text'],
1461 },
1462 payBtn: {
1463 name: globalLabels.pay_button_type,
1464 buttonType: 'filled',
1465 typeOptions: ['filled', 'plain', 'text'],
1466 },
1467 bookBtn: {
1468 name: globalLabels.book_now_button_type,
1469 buttonType: 'filled',
1470 typeOptions: ['filled', 'plain', 'text'],
1471 },
1472 employee: {
1473 name: globalLabels.csb_cust_appointment_employee,
1474 visibility: true,
1475 },
1476 price: {
1477 name: globalLabels.appointment_price,
1478 visibility: true,
1479 },
1480 },
1481 translations: null,
1482 },
1483 bookAppointment: {
1484 options: {
1485 employee: {
1486 name: globalLabels.employee_input_field,
1487 required: false,
1488 visibility: true,
1489 filterable: true,
1490 },
1491 location: {
1492 name: globalLabels.location_input_field,
1493 required: false,
1494 visibility: true,
1495 filterable: true,
1496 },
1497 timeZoneVisibility: {
1498 name: globalLabels.calendar_time_zone,
1499 visibility: true,
1500 },
1501 endTimeVisibility: {
1502 name: globalLabels.calendar_slot_end_time,
1503 visibility: true,
1504 },
1505 cancelBtn: {
1506 name: globalLabels.cancel_button_type,
1507 buttonType: 'plain',
1508 typeOptions: ['filled', 'plain', 'text'],
1509 },
1510 continueBtn: {
1511 name: globalLabels.continue_button_type,
1512 buttonType: 'filled',
1513 typeOptions: ['filled', 'plain', 'text'],
1514 },
1515 },
1516 translations: null,
1517 },
1518 cancelPackage: {
1519 options: {
1520 cancelBtn: {
1521 name: globalLabels.cancel_button_type,
1522 buttonType: 'plain',
1523 typeOptions: ['filled', 'plain', 'text'],
1524 },
1525 confirmBtn: {
1526 name: globalLabels.confirm_button_type,
1527 buttonType: 'filled',
1528 typeOptions: ['filled', 'plain', 'text'],
1529 },
1530 },
1531 translations: null,
1532 },
1533 signIn: {
1534 options: {
1535 signInBtn: {
1536 name: globalLabels.sign_in_button_type,
1537 buttonType: 'filled',
1538 typeOptions: ['filled', 'plain', 'text'],
1539 },
1540 },
1541 translations: null,
1542 },
1543 accessLink: {
1544 options: {
1545 sendBtn: {
1546 name: globalLabels.send_button_type,
1547 buttonType: 'filled',
1548 typeOptions: ['filled', 'plain', 'text'],
1549 },
1550 },
1551 translations: null,
1552 },
1553 accessLinkSuccess: {
1554 translations: null,
1555 },
1556 setPass: {
1557 options: {
1558 newPassBtn: {
1559 name: globalLabels.new_pass_button_type,
1560 buttonType: 'filled',
1561 typeOptions: ['filled', 'plain', 'text'],
1562 },
1563 },
1564 translations: null,
1565 },
1566 },
1567 cape: {
1568 colors: {
1569 colorPrimary: '#1246D6',
1570 colorSuccess: '#019719',
1571 colorError: '#B4190F',
1572 colorWarning: '#CCA20C',
1573 colorInpBgr: '#FFFFFF',
1574 colorInpBorder: '#D1D5D7',
1575 colorInpText: '#1A2C37',
1576 colorInpPlaceHolder: '#808A90',
1577 colorDropBgr: '#FFFFFF',
1578 colorDropBorder: '#FFFFFF',
1579 colorDropText: '#0E1920',
1580 colorSbBgr: '#17295A',
1581 colorSbText: '#FFFFFF',
1582 colorMainBgr: '#FFFFFF',
1583 colorMainHeadingText: '#33434C',
1584 colorMainText: '#1A2C37',
1585 colorBtnPrim: '#265CF2',
1586 colorBtnPrimText: '#FFFFFF',
1587 colorBtnSec: '#1A2C37',
1588 colorBtnSecText: '#FFFFFF',
1589 colorBtnDanger: '#B4190F',
1590 colorBtnDangerText: '#FFFFFF',
1591 },
1592 sidebar: {
1593 options: {
1594 toggle: {
1595 name: globalLabels.toggled_sidebar,
1596 visibility: false,
1597 },
1598 },
1599 translations: null,
1600 },
1601 appointments: {
1602 options: {
1603 timeZone: {
1604 name: globalLabels.time_zone,
1605 visibility: true,
1606 },
1607 servicesFilter: {
1608 name: globalLabels.csb_cust_filter_service,
1609 visibility: true,
1610 },
1611 customersFilter: {
1612 name: globalLabels.csb_cust_filter_customer,
1613 visibility: true,
1614 },
1615 locationsFilter: {
1616 name: globalLabels.csb_cust_filter_location,
1617 visibility: true,
1618 },
1619 filterBtn: {
1620 name: globalLabels.filters_button_type,
1621 buttonType: 'filled',
1622 typeOptions: ['filled', 'plain', 'text'],
1623 },
1624 newAppBtn: {
1625 name: globalLabels.new_app_button_type,
1626 buttonType: 'filled',
1627 typeOptions: ['filled', 'plain', 'text'],
1628 },
1629 customer: {
1630 name: globalLabels.csb_cust_appointment_customer,
1631 visibility: true,
1632 },
1633 customerPhone: {
1634 name: globalLabels.csb_cust_appointment_customer_phone,
1635 visibility: true,
1636 },
1637 customerEmail: {
1638 name: globalLabels.csb_cust_appointment_customer_email,
1639 visibility: true,
1640 },
1641 price: {
1642 name: globalLabels.appointment_price,
1643 visibility: true,
1644 },
1645 },
1646 translations: null,
1647 },
1648 events: {
1649 options: {
1650 timeZone: {
1651 name: globalLabels.time_zone,
1652 visibility: true,
1653 },
1654 eventsFilter: {
1655 name: globalLabels.csb_cust_filter_event,
1656 visibility: true,
1657 },
1658 customersFilter: {
1659 name: globalLabels.csb_cust_filter_customer,
1660 visibility: true,
1661 },
1662 locationsFilter: {
1663 name: globalLabels.csb_cust_filter_location,
1664 visibility: true,
1665 },
1666 filterBtn: {
1667 name: globalLabels.filters_button_type,
1668 buttonType: 'filled',
1669 typeOptions: ['filled', 'plain', 'text'],
1670 },
1671 scanQrCodeBtn: {
1672 name: globalLabels.qr_etickets_evt_button,
1673 visibility: true,
1674 },
1675 newEvtBtn: {
1676 name: globalLabels.new_evt_button_type,
1677 buttonType: 'filled',
1678 typeOptions: ['filled', 'plain', 'text'],
1679 },
1680 customerPhone: {
1681 name: globalLabels.csb_cust_event_customer_phone,
1682 visibility: true,
1683 },
1684 customerEmail: {
1685 name: globalLabels.csb_cust_event_customer_email,
1686 visibility: true,
1687 },
1688 price: {
1689 name: globalLabels.event_price,
1690 visibility: true,
1691 },
1692 },
1693 translations: null,
1694 },
1695 signIn: {
1696 options: {
1697 signInBtn: {
1698 name: globalLabels.sign_in_button_type,
1699 buttonType: 'filled',
1700 typeOptions: ['filled', 'plain', 'text'],
1701 },
1702 },
1703 translations: null,
1704 },
1705 accessLink: {
1706 options: {
1707 sendBtn: {
1708 name: globalLabels.send_button_type,
1709 buttonType: 'filled',
1710 typeOptions: ['filled', 'plain', 'text'],
1711 },
1712 },
1713 translations: null,
1714 },
1715 accessLinkSuccess: {
1716 translations: null,
1717 },
1718 setPass: {
1719 options: {
1720 newPassBtn: {
1721 name: globalLabels.new_pass_button_type,
1722 buttonType: 'filled',
1723 typeOptions: ['filled', 'plain', 'text'],
1724 },
1725 },
1726 translations: null,
1727 },
1728 },
1729 ecf: {
1730 colors: {
1731 colorPrimary: '#1246D6',
1732 colorSuccess: '#019719',
1733 colorError: '#B4190F',
1734 colorWarning: '#CCA20C',
1735 colorInpBgr: '#FFFFFF',
1736 colorInpBorder: '#D1D5D7',
1737 colorInpText: '#1A2C37',
1738 colorInpPlaceHolder: '#808A90',
1739 colorDropBgr: '#FFFFFF',
1740 colorDropBorder: '#FFFFFF',
1741 colorDropText: '#0E1920',
1742 colorSbBgr: '#FFFFFF',
1743 colorSbText: '#1A2C37',
1744 colorMainBgr: '#FFFFFF',
1745 colorMainHeadingText: '#33434C',
1746 colorMainText: '#1A2C37',
1747 colorCardBgr: '#FFFFFF',
1748 colorCardBorder: '#D1D5D7',
1749 colorCardText: '#1A2C37',
1750 colorBtnPrim: '#265CF2',
1751 colorBtnPrimText: '#FFFFFF',
1752 colorBtnSec: '#1A2C37',
1753 colorBtnSecText: '#FFFFFF',
1754 colorBtnWaiting: '#CCA20C',
1755 colorBtnWaitingText: '#FFFFFF',
1756 },
1757 calendar: {
1758 options: {
1759 upcomingBlock: {
1760 name: globalLabels.upcoming_events_block,
1761 visibility: true,
1762 },
1763 search: {
1764 name: globalLabels.step_search,
1765 visibility: true,
1766 },
1767 filters: {
1768 name: globalLabels.step_filters,
1769 visibility: true,
1770 },
1771 capacity: {
1772 name: globalLabels.event_slots_capacity,
1773 visibility: true,
1774 },
1775 price: {
1776 name: globalLabels.event_price,
1777 visibility: true,
1778 },
1779 tax: {
1780 name: globalLabels.tax_visibility,
1781 visibility: true,
1782 },
1783 location: {
1784 name: globalLabels.event_location,
1785 visibility: true,
1786 },
1787 status: {
1788 name: globalLabels.event_status,
1789 visibility: true,
1790 },
1791 },
1792 translations: null,
1793 },
1794 info: {
1795 options: {
1796 gallery: {
1797 name: globalLabels.event_gallery,
1798 visibility: true,
1799 },
1800 location: {
1801 name: globalLabels.event_location,
1802 visibility: true,
1803 },
1804 slots: {
1805 name: globalLabels.event_slots_capacity,
1806 visibility: true,
1807 },
1808 price: {
1809 name: globalLabels.event_price,
1810 visibility: true,
1811 },
1812 tax: {
1813 name: globalLabels.tax_visibility,
1814 visibility: true,
1815 },
1816 status: {
1817 name: globalLabels.event_status,
1818 visibility: true,
1819 },
1820 eventDescription: {
1821 name: globalLabels.event_description,
1822 visibility: true,
1823 },
1824 eventOrganizer: {
1825 name: globalLabels.event_organizer,
1826 visibility: true,
1827 },
1828 eventEmployees: {
1829 name: globalLabels.event_employees,
1830 visibility: true,
1831 },
1832 primBtn: {
1833 name: globalLabels.booking_event_btn,
1834 buttonType: 'filled',
1835 typeOptions: ['filled', 'plain', 'text'],
1836 },
1837 waitingBtn: {
1838 name: globalLabels.booking_waiting_btn,
1839 buttonType: 'filled',
1840 typeOptions: ['filled', 'plain', 'text'],
1841 },
1842 secBtn: {
1843 name: globalLabels.close_event_btn,
1844 visibility: true,
1845 buttonType: 'plain',
1846 typeOptions: ['filled', 'plain', 'text'],
1847 },
1848 },
1849 translations: null,
1850 },
1851 bringingAnyone: {
1852 options: {
1853 primBtn: {
1854 name: globalLabels.booking_event_btn,
1855 buttonType: 'filled',
1856 typeOptions: ['filled', 'plain', 'text'],
1857 },
1858 secBtn: {
1859 name: globalLabels.close_event_btn,
1860 buttonType: 'plain',
1861 typeOptions: ['filled', 'plain', 'text'],
1862 },
1863 },
1864 translations: null,
1865 },
1866 tickets: {
1867 options: {
1868 primBtn: {
1869 name: globalLabels.booking_event_btn,
1870 buttonType: 'filled',
1871 typeOptions: ['filled', 'plain', 'text'],
1872 },
1873 secBtn: {
1874 name: globalLabels.close_event_btn,
1875 visibility: true,
1876 buttonType: 'plain',
1877 typeOptions: ['filled', 'plain', 'text'],
1878 },
1879 },
1880 translations: null,
1881 },
1882 customerInfo: {
1883 order: [
1884 {
1885 name: globalLabels.first_name,
1886 id: 'firstName',
1887 },
1888 {
1889 name: globalLabels.last_name,
1890 id: 'lastName',
1891 },
1892 {
1893 name: globalLabels.email,
1894 id: 'email',
1895 },
1896 {
1897 name: globalLabels.phone,
1898 id: 'phone',
1899 },
1900 ],
1901 options: {
1902 lastName: {
1903 name: globalLabels.last_name_input_field,
1904 required: true,
1905 visibility: true,
1906 },
1907 email: {
1908 name: globalLabels.email_input_field,
1909 required: false,
1910 visibility: true,
1911 },
1912 phone: {
1913 name: globalLabels.phone_input_field,
1914 required: false,
1915 visibility: true,
1916 },
1917 primBtn: {
1918 name: globalLabels.booking_event_btn,
1919 buttonType: 'filled',
1920 typeOptions: ['filled', 'plain', 'text'],
1921 },
1922 secBtn: {
1923 name: globalLabels.close_event_btn,
1924 visibility: true,
1925 buttonType: 'plain',
1926 typeOptions: ['filled', 'plain', 'text'],
1927 },
1928 },
1929 translations: null,
1930 },
1931 payment: {
1932 options: {
1933 coupon: {
1934 name: globalLabels.coupon_input_field,
1935 required: false,
1936 },
1937 primBtn: {
1938 name: globalLabels.booking_event_btn,
1939 buttonType: 'filled',
1940 typeOptions: ['filled', 'plain', 'text'],
1941 },
1942 secBtn: {
1943 name: globalLabels.close_event_btn,
1944 visibility: true,
1945 buttonType: 'plain',
1946 typeOptions: ['filled', 'plain', 'text'],
1947 },
1948 },
1949 translations: null,
1950 },
1951 congrats: {
1952 options: {
1953 primBtn: {
1954 name: globalLabels.finish_event_btn,
1955 buttonType: 'filled',
1956 typeOptions: ['filled', 'plain', 'text'],
1957 },
1958 secBtn: {
1959 name: globalLabels.customer_panel_btn,
1960 visibility: true,
1961 buttonType: 'plain',
1962 typeOptions: ['filled', 'plain', 'text'],
1963 },
1964 },
1965 translations: null,
1966 },
1967 },
1968 }
1969
1970 let defaultTranslations = {
1971 sbsNew: {
1972 initStep: {
1973 header: {
1974 name: globalLabels.step_title,
1975 labels: {
1976 service_selection: null,
1977 },
1978 },
1979 input: {
1980 name: globalLabels.input_fields,
1981 labels: {
1982 service_colon: null,
1983 select_service: null,
1984 please_select_service: null,
1985 location: null,
1986 select_location: null,
1987 please_select_location: null,
1988 employee_colon: null,
1989 select_employee: null,
1990 please_select_employee: null,
1991 },
1992 },
1993 dropdown: {
1994 name: globalLabels.dropdowns,
1995 labels: {
1996 dropdown_category_heading: null,
1997 dropdown_items_heading: null,
1998 dropdown_empty: null,
1999 total_tax_colon: null,
2000 incl_tax: null,
2001 },
2002 },
2003 footer: {
2004 name: globalLabels.footer_buttons,
2005 labels: {
2006 continue: null,
2007 },
2008 },
2009 employeeDescription: {
2010 name: globalLabels.employee_description,
2011 labels: {
2012 employee_information: null,
2013 select_this_employee: null,
2014 },
2015 },
2016 },
2017 serviceStep: {
2018 header: {
2019 name: globalLabels.step_title,
2020 labels: {
2021 service_selection: null,
2022 },
2023 },
2024 filter: {
2025 name: globalLabels.step_filters,
2026 labels: {
2027 filter_input: null,
2028 select_service_category: null,
2029 dropdown_empty: null,
2030 no_results_found: null,
2031 },
2032 },
2033 card: {
2034 name: globalLabels.card_field,
2035 labels: {
2036 free: null,
2037 total_tax_colon: null,
2038 incl_tax: null,
2039 multiple_locations: null,
2040 learn_more: null,
2041 view_in_package: null,
2042 },
2043 },
2044 popup: {
2045 name: globalLabels.popup_content,
2046 labels: {
2047 service_information: null,
2048 employees: null,
2049 locations: null,
2050 },
2051 },
2052 footer: {
2053 name: globalLabels.footer_buttons,
2054 labels: {
2055 continue: null,
2056 },
2057 },
2058 },
2059 employeeStep: {
2060 header: {
2061 name: globalLabels.step_title,
2062 labels: {
2063 employee_selection: null,
2064 },
2065 },
2066 card: {
2067 name: globalLabels.card_field,
2068 labels: {
2069 any_employee: null,
2070 learn_more: null,
2071 },
2072 },
2073 popup: {
2074 name: globalLabels.popup_content,
2075 labels: {
2076 employee_information: null,
2077 },
2078 },
2079 footer: {
2080 name: globalLabels.footer_buttons,
2081 labels: {
2082 continue: null,
2083 },
2084 },
2085 },
2086 locationStep: {
2087 header: {
2088 name: globalLabels.step_title,
2089 labels: {
2090 location_selection: null,
2091 },
2092 },
2093 card: {
2094 name: globalLabels.card_field,
2095 labels: {
2096 any_location: null,
2097 learn_more: null,
2098 },
2099 },
2100 popup: {
2101 name: globalLabels.popup_content,
2102 labels: {
2103 location_information: null,
2104 },
2105 },
2106 footer: {
2107 name: globalLabels.footer_buttons,
2108 labels: {
2109 continue: null,
2110 },
2111 },
2112 },
2113 bringingAnyone: {
2114 header: {
2115 name: globalLabels.step_title,
2116 labels: {
2117 bringing_anyone: null,
2118 },
2119 },
2120 heading: {
2121 name: globalLabels.sub_step_title,
2122 labels: {
2123 bringing_anyone_title: null,
2124 },
2125 },
2126 content: {
2127 name: globalLabels.content,
2128 labels: {
2129 bringing_people: null,
2130 add_people: null,
2131 bringing_price: null,
2132 bringing_people_total: null,
2133 add_people_total: null,
2134 },
2135 },
2136 footer: {
2137 name: globalLabels.footer_buttons,
2138 labels: {
2139 continue: null,
2140 bringing_yes: null,
2141 bringing_no: null,
2142 },
2143 },
2144 },
2145 packageStep: {
2146 header: {
2147 name: globalLabels.step_title,
2148 labels: {
2149 package_selection: null,
2150 },
2151 },
2152 heading: {
2153 name: globalLabels.sub_step_title,
2154 labels: {
2155 package_heading: null,
2156 },
2157 },
2158 content: {
2159 name: globalLabels.content,
2160 labels: {
2161 discount_save: null,
2162 separator_or: null,
2163 total_tax_colon: null,
2164 incl_tax: null,
2165 },
2166 },
2167 footer: {
2168 name: globalLabels.footer_buttons,
2169 labels: {
2170 continue_without_package: null,
2171 continue: null,
2172 },
2173 },
2174 },
2175 packageInfoStep: {
2176 header: {
2177 name: globalLabels.step_title,
2178 labels: {
2179 package_info_step: null,
2180 },
2181 },
2182 heading: {
2183 name: globalLabels.heading_content,
2184 labels: {
2185 package_info_discount: null,
2186 package_book_service: null,
2187 expires_at: null,
2188 expires_after: null,
2189 expires_day: null,
2190 expires_days: null,
2191 expires_week: null,
2192 expires_weeks: null,
2193 expires_month: null,
2194 expires_months: null,
2195 without_expiration: null,
2196 multiple_locations: null,
2197 show_more: null,
2198 show_less: null,
2199 total_tax_colon: null,
2200 incl_tax: null,
2201 },
2202 },
2203 content: {
2204 name: globalLabels.main_content,
2205 labels: {
2206 package_info_includes: null,
2207 package_info_employees: null,
2208 },
2209 },
2210 footer: {
2211 name: globalLabels.footer_buttons,
2212 labels: {
2213 continue: null,
2214 },
2215 },
2216 },
2217 packageAppointmentsStep: {
2218 header: {
2219 name: globalLabels.step_title,
2220 labels: {
2221 package_appointment_step: null,
2222 },
2223 },
2224 heading: {
2225 name: globalLabels.step_heading,
2226 labels: {
2227 package_appointment_required: null,
2228 package_appointment_remaining: null,
2229 },
2230 },
2231 inputs: {
2232 name: globalLabels.input_field,
2233 labels: {
2234 package_appointment_employee: null,
2235 package_select_employee: null,
2236 package_appointment_location: null,
2237 package_select_location: null,
2238 },
2239 },
2240 employeeDescriptionPackage: {
2241 name: globalLabels.employee_description,
2242 labels: {
2243 employee_information_package: null,
2244 select_this_employee_package: null,
2245 },
2246 },
2247 content: {
2248 name: globalLabels.cards_and_buttons,
2249 labels: {
2250 package_appointments: null,
2251 package_appointments_date: null,
2252 package_appointments_select: null,
2253 package_appointments_selected: null,
2254 package_appointments_add_more: null,
2255 package_appointments_slots_selected: null,
2256 },
2257 },
2258 footer: {
2259 name: globalLabels.footer_buttons,
2260 labels: {
2261 continue: null,
2262 },
2263 },
2264 },
2265 packageAppointmentsListStep: {
2266 header: {
2267 name: globalLabels.step_title,
2268 labels: {
2269 package_booking_overview: null,
2270 },
2271 },
2272 content: {
2273 name: globalLabels.page_content,
2274 labels: {
2275 package_overview_all_selected: null,
2276 package_overview_selected_later: null,
2277 package_overview_info: null,
2278 package_overview_date: null,
2279 package_overview_time: null,
2280 package_overview_employee: null,
2281 package_overview_location: null,
2282 total_tax_colon: null,
2283 incl_tax: null,
2284 },
2285 },
2286 footer: {
2287 name: globalLabels.footer_buttons,
2288 labels: {
2289 continue: null,
2290 },
2291 },
2292 },
2293 extrasStep: {
2294 header: {
2295 name: globalLabels.step_title,
2296 labels: {
2297 extras: null,
2298 },
2299 },
2300 heading: {
2301 name: globalLabels.heading_content,
2302 labels: {
2303 extras_available: null,
2304 min_req_extras_colon: null,
2305 },
2306 },
2307 card: {
2308 name: globalLabels.card_field,
2309 labels: {
2310 extras_card_open: null,
2311 extras_card_close: null,
2312 duration_colon: null,
2313 total_tax_colon: null,
2314 incl_tax: null,
2315 },
2316 },
2317 footer: {
2318 name: globalLabels.footer_buttons,
2319 labels: {
2320 continue: null,
2321 },
2322 },
2323 },
2324 dateTimeStep: {
2325 header: {
2326 name: globalLabels.step_title,
2327 labels: {
2328 date_time: null,
2329 },
2330 },
2331 content: {
2332 name: globalLabels.step_content,
2333 labels: {
2334 date_time_slots_selected: null,
2335 total_tax_colon: null,
2336 incl_tax: null,
2337 waiting_list: null,
2338 },
2339 },
2340 footer: {
2341 name: globalLabels.footer_buttons,
2342 labels: {
2343 continue: null,
2344 },
2345 },
2346 },
2347 cartStep: {
2348 header: {
2349 name: globalLabels.step_title,
2350 labels: {
2351 cart_step: null,
2352 },
2353 },
2354 content: {
2355 name: globalLabels.step_content,
2356 labels: {
2357 cart_title: null,
2358 },
2359 },
2360 card: {
2361 name: globalLabels.card_field,
2362 labels: {
2363 service_colon: null,
2364 summary_person: null,
2365 summary_persons: null,
2366 summary_services_subtotal: null,
2367 extras: null,
2368 summary_extras_subtotal: null,
2369 total_price: null,
2370 info: null,
2371 delete: null,
2372 edit: null,
2373 total_tax_colon: null,
2374 incl_tax: null,
2375 },
2376 },
2377 footer: {
2378 name: globalLabels.footer_buttons,
2379 labels: {
2380 continue: null,
2381 cart_add_button: null,
2382 cancel: null,
2383 },
2384 },
2385 },
2386 recurringStep: {
2387 header: {
2388 name: globalLabels.step_title,
2389 labels: {
2390 recurring_step: null,
2391 },
2392 },
2393 heading: {
2394 name: globalLabels.heading_content,
2395 labels: {
2396 recurrence: null,
2397 recurrence_choosing_time: null,
2398 },
2399 },
2400 content: {
2401 name: globalLabels.page_content,
2402 labels: {
2403 repeat_every: null,
2404 recurrence_day: null,
2405 recurrence_week: null,
2406 recurrence_month: null,
2407 recurrence_days: null,
2408 recurrence_weeks: null,
2409 recurrence_months: null,
2410 recurrence_repeat_on: null,
2411 recurrence_specific_date: null,
2412 recurrence_first: null,
2413 recurrence_second: null,
2414 recurrence_third: null,
2415 recurrence_fourth: null,
2416 recurrence_last: null,
2417 recurrence_ends: null,
2418 recurrence_choose_ends: null,
2419 recurrence_on: null,
2420 recurrence_select_date: null,
2421 recurrence_after: null,
2422 occurrences: null,
2423 appointment_repeats: null,
2424 recurrence_every: null,
2425 repeats_from: null,
2426 repeats_on: null,
2427 repeats_at: null,
2428 number_of_recurrences: null,
2429 ends_on: null,
2430 },
2431 },
2432 footer: {
2433 name: globalLabels.footer_buttons,
2434 labels: {
2435 continue: null,
2436 },
2437 },
2438 },
2439 recurringSummary: {
2440 header: {
2441 name: globalLabels.step_title,
2442 labels: {
2443 recurring_summary: null,
2444 },
2445 },
2446 alert: {
2447 name: globalLabels.alert_content,
2448 labels: {
2449 recurring_unavailable_slots: null,
2450 recurring_alert_content: null,
2451 },
2452 },
2453 content: {
2454 name: globalLabels.card_content,
2455 labels: {
2456 recurring_chose_date: null,
2457 recurring_delete: null,
2458 recurring_slots_selected: null,
2459 },
2460 },
2461 footer: {
2462 name: globalLabels.footer_buttons,
2463 labels: {
2464 continue: null,
2465 },
2466 },
2467 },
2468 recurringPopup: {
2469 header: {
2470 name: globalLabels.popup_title,
2471 labels: {
2472 repeat_appointment: null,
2473 },
2474 },
2475 content: {
2476 name: globalLabels.popup_content,
2477 labels: {
2478 repeat_appointment_quest: null,
2479 },
2480 },
2481 footer: {
2482 name: globalLabels.popup_buttons,
2483 labels: {
2484 yes: null,
2485 no: null,
2486 },
2487 },
2488 },
2489 infoStep: {
2490 header: {
2491 name: globalLabels.step_title,
2492 labels: {
2493 info_step: null,
2494 },
2495 },
2496 social: {
2497 name: globalLabels.social_login,
2498 labels: {
2499 auto_fill_your_details: null,
2500 or_enter_details_below: null,
2501 },
2502 },
2503 subscribe: {
2504 name: globalLabels.mailchimp,
2505 labels: {
2506 subscribe_to_mailing_list: null,
2507 },
2508 },
2509 input: {
2510 name: globalLabels.input_fields,
2511 labels: {
2512 first_name_colon: null,
2513 enter_first_name: null,
2514 enter_first_name_warning: null,
2515 last_name_colon: null,
2516 enter_last_name: null,
2517 enter_last_name_warning: null,
2518 email_colon: null,
2519 enter_email: null,
2520 enter_valid_email_warning: null,
2521 phone_colon: null,
2522 enter_phone: null,
2523 enter_phone_warning: null,
2524 },
2525 },
2526 footer: {
2527 name: globalLabels.footer_buttons,
2528 labels: {
2529 continue: null,
2530 },
2531 },
2532 },
2533 paymentStep: {
2534 header: {
2535 name: globalLabels.step_title,
2536 labels: {
2537 payment_step: null,
2538 },
2539 },
2540 summarySegment: {
2541 name: globalLabels.summary_segment,
2542 labels: {
2543 summary: null,
2544 coupon: null,
2545 add_coupon_btn: null,
2546 summary_services: null,
2547 summary_services_subtotal: null,
2548 summary_person: null,
2549 summary_persons: null,
2550 summary_recurrence: null,
2551 summary_recurrences: null,
2552 summary_extras: null,
2553 summary_extras_subtotal: null,
2554 summary_package: null,
2555 total_price: null,
2556 subtotal: null,
2557 discount_amount_colon: null,
2558 total_amount_colon: null,
2559 paying_now: null,
2560 paying_later: null,
2561 full_amount_consent: null,
2562 total_tax_colon: null,
2563 incl_tax: null,
2564 },
2565 },
2566 paymentSegment: {
2567 name: globalLabels.payment_segment,
2568 labels: {
2569 payment_method: null,
2570 on_site: null,
2571 card_number_colon: null,
2572 expires_date_colon: null,
2573 payment_protected_policy: null,
2574 payment_onsite_sentence: null,
2575 payment_wc_mollie_sentence: null,
2576 },
2577 },
2578 footer: {
2579 name: globalLabels.footer_buttons,
2580 labels: {
2581 continue: null,
2582 },
2583 },
2584 },
2585 congratulations: {
2586 heading: {
2587 name: globalLabels.heading_title,
2588 labels: {
2589 congratulations: null,
2590 appointment_id: null,
2591 your_position_on_waiting_list: null,
2592 appointment_waiting_list_notify_message: null,
2593 },
2594 },
2595 content: {
2596 name: globalLabels.content,
2597 labels: {
2598 add_to_calendar: null,
2599 congrats_cart: null,
2600 congrats_date: null,
2601 congrats_time: null,
2602 congrats_service: null,
2603 congrats_package: null,
2604 congrats_employee: null,
2605 congrats_location: null,
2606 congrats_total_amount: null,
2607 congrats_payment: null,
2608 your_name_colon: null,
2609 email_address_colon: null,
2610 phone_number_colon: null,
2611 },
2612 },
2613 footer: {
2614 name: globalLabels.footer_buttons,
2615 labels: {
2616 finish_appointment: null,
2617 congrats_panel: null,
2618 },
2619 },
2620 },
2621 sidebar: {
2622 content: {
2623 name: globalLabels.content,
2624 labels: {
2625 plus_more: null,
2626 },
2627 },
2628 footer: {
2629 name: globalLabels.sidebar_footer,
2630 labels: {
2631 get_in_touch: null,
2632 collapse_menu: null,
2633 },
2634 },
2635 },
2636 },
2637 cbf: {
2638 categoriesList: {
2639 cardFooter: {
2640 name: globalLabels.cl_btn,
2641 labels: {
2642 view_all: null,
2643 },
2644 },
2645 },
2646 categoryItemsList: {
2647 backBtn: {
2648 name: globalLabels.back_btn_heading,
2649 labels: {
2650 back_btn: null,
2651 },
2652 },
2653 filterBlock: {
2654 name: globalLabels.cil_filter_block,
2655 labels: {
2656 filter_input: null,
2657 filter_employee: null,
2658 filter_location: null,
2659 filter_all: null,
2660 filter_packages: null,
2661 filter_services: null,
2662 },
2663 },
2664 sideMenu: {
2665 name: globalLabels.cil_side_menu_block,
2666 labels: {
2667 get_in_touch: null,
2668 collapse_menu: null,
2669 },
2670 },
2671 page: {
2672 name: globalLabels.cil_main_content,
2673 labels: {
2674 available: null,
2675 heading_service: null,
2676 heading_services: null,
2677 package: null,
2678 packages: null,
2679 no_search_data: null,
2680 save: null,
2681 free: null,
2682 expires_at: null,
2683 expires_after: null,
2684 expires_day: null,
2685 expires_days: null,
2686 expires_week: null,
2687 expires_weeks: null,
2688 expires_month: null,
2689 expires_months: null,
2690 without_expiration: null,
2691 multiple_locations: null,
2692 in_package: null,
2693 view_employees: null,
2694 continue: null,
2695 total_tax_colon: null,
2696 incl_tax: null,
2697 },
2698 },
2699 employeeDialog: {
2700 name: globalLabels.employee_dialog,
2701 labels: {
2702 employee_info: null,
2703 book_service: null,
2704 book_package: null,
2705 },
2706 },
2707 },
2708 categoryService: {
2709 header: {
2710 name: globalLabels.cil_main_header,
2711 labels: {
2712 back_btn: null,
2713 heading_service: null,
2714 book_now: null,
2715 free: null,
2716 multiple_locations: null,
2717 },
2718 },
2719 page: {
2720 name: globalLabels.cil_main_content,
2721 labels: {
2722 view_all_photos: null,
2723 about_service: null,
2724 tab_employees: null,
2725 total_tax_colon: null,
2726 incl_tax: null,
2727 },
2728 },
2729 packBlock: {
2730 name: globalLabels.package_block,
2731 labels: {
2732 service_available_in_package: null,
2733 save: null,
2734 more_packages: null,
2735 less_packages: null,
2736 expires_at: null,
2737 expires_after: null,
2738 expires_day: null,
2739 expires_days: null,
2740 expires_week: null,
2741 expires_weeks: null,
2742 expires_month: null,
2743 expires_months: null,
2744 without_expiration: null,
2745 in_package: null,
2746 },
2747 },
2748 },
2749 categoryPackage: {
2750 header: {
2751 name: globalLabels.cil_main_header,
2752 labels: {
2753 back_btn: null,
2754 package: null,
2755 save: null,
2756 book_now: null,
2757 free: null,
2758 expires_at: null,
2759 expires_after: null,
2760 expires_day: null,
2761 expires_days: null,
2762 expires_week: null,
2763 expires_weeks: null,
2764 expires_month: null,
2765 expires_months: null,
2766 without_expiration: null,
2767 multiple_locations: null,
2768 },
2769 },
2770 page: {
2771 name: globalLabels.cil_main_content,
2772 labels: {
2773 view_all_photos: null,
2774 about_package: null,
2775 tab_employees: null,
2776 package_includes: null,
2777 package_book_service: null,
2778 total_tax_colon: null,
2779 incl_tax: null,
2780 },
2781 },
2782 },
2783 },
2784 elf: {
2785 list: {
2786 header: {
2787 name: globalLabels.step_title,
2788 labels: {
2789 event_available: null,
2790 events_available: null,
2791 },
2792 },
2793 filter: {
2794 name: globalLabels.step_filters,
2795 labels: {
2796 event_search: null,
2797 event_filters: null,
2798 event_type: null,
2799 event_location: null,
2800 },
2801 },
2802 card: {
2803 name: globalLabels.event_card,
2804 labels: {
2805 event_begins: null,
2806 event_at: null,
2807 from: null,
2808 event_free: null,
2809 event_slot_left: null,
2810 event_slots_left: null,
2811 event_learn_more: null,
2812 event_read_more: null,
2813 open: null,
2814 full: null,
2815 upcoming: null,
2816 closed: null,
2817 canceled: null,
2818 total_tax_colon: null,
2819 incl_tax: null,
2820 person_waiting: null,
2821 people_waiting: null,
2822 join_waiting_list: null,
2823 },
2824 },
2825 pagination: {
2826 name: globalLabels.step_pagination,
2827 labels: {
2828 event_page: null,
2829 },
2830 },
2831 },
2832 info: {
2833 header: {
2834 name: globalLabels.step_header,
2835 labels: {
2836 event_begins: null,
2837 event_at: null,
2838 from: null,
2839 event_free: null,
2840 event_slot_left: null,
2841 event_slots_left: null,
2842 open: null,
2843 full: null,
2844 upcoming: null,
2845 closed: null,
2846 canceled: null,
2847 total_tax_colon: null,
2848 incl_tax: null,
2849 person_waiting: null,
2850 people_waiting: null,
2851 },
2852 },
2853 tabInfo: {
2854 name: globalLabels.step_info_tab,
2855 labels: {
2856 event_info: null,
2857 event_timetable: null,
2858 description: null,
2859 show_more: null,
2860 show_less: null,
2861 event_organizer: null,
2862 about: null,
2863 },
2864 },
2865 tabTickets: {
2866 name: globalLabels.step_tickets_tab,
2867 labels: {
2868 event_tickets: null,
2869 event_tickets_left: null,
2870 event_ticket_left: null,
2871 },
2872 },
2873 footer: {
2874 name: globalLabels.footer_buttons,
2875 labels: {
2876 event_book_event: null,
2877 event_close: null,
2878 join_waiting_list: null,
2879 },
2880 },
2881 },
2882 bringingAnyone: {
2883 header: {
2884 name: globalLabels.step_title,
2885 labels: {
2886 event_bringing: null,
2887 },
2888 },
2889 footer: {
2890 name: globalLabels.footer_buttons,
2891 labels: {
2892 back_btn: null,
2893 continue: null,
2894 },
2895 },
2896 },
2897 tickets: {
2898 header: {
2899 name: globalLabels.step_title,
2900 labels: {
2901 event_select_tickets: null,
2902 },
2903 },
2904 heading: {
2905 name: globalLabels.step_heading,
2906 labels: {
2907 event_tickets: null,
2908 event_tickets_context: null,
2909 event_ticket_types: null,
2910 },
2911 },
2912 content: {
2913 name: globalLabels.step_content,
2914 labels: {
2915 event_ticket_left: null,
2916 event_tickets_left: null,
2917 person_waiting: null,
2918 people_waiting: null,
2919 },
2920 },
2921 footer: {
2922 name: globalLabels.footer_buttons,
2923 labels: {
2924 continue: null,
2925 event_close: null,
2926 join_waiting_list: null,
2927 },
2928 },
2929 },
2930 customerInfo: {
2931 header: {
2932 name: globalLabels.step_title,
2933 labels: {
2934 event_customer_info: null,
2935 },
2936 },
2937 social: {
2938 name: globalLabels.social_login,
2939 labels: {
2940 auto_fill_your_details: null,
2941 or_enter_details_below: null,
2942 },
2943 },
2944 subscribe: {
2945 name: globalLabels.mailchimp,
2946 labels: {
2947 subscribe_to_mailing_list: null,
2948 },
2949 },
2950 input: {
2951 name: globalLabels.input_fields,
2952 labels: {
2953 first_name_colon: null,
2954 enter_first_name: null,
2955 enter_first_name_warning: null,
2956 last_name_colon: null,
2957 enter_last_name: null,
2958 enter_last_name_warning: null,
2959 email_colon: null,
2960 enter_email: null,
2961 enter_valid_email_warning: null,
2962 phone_colon: null,
2963 enter_phone: null,
2964 enter_phone_warning: null,
2965 },
2966 },
2967 footer: {
2968 name: globalLabels.footer_buttons,
2969 labels: {
2970 continue: null,
2971 event_close: null,
2972 },
2973 },
2974 },
2975 payment: {
2976 header: {
2977 name: globalLabels.step_title,
2978 labels: {
2979 event_payment: null,
2980 },
2981 },
2982 summarySegment: {
2983 name: globalLabels.summary_segment,
2984 labels: {
2985 summary: null,
2986 summary_event: null,
2987 summary_person: null,
2988 summary_persons: null,
2989 subtotal: null,
2990 discount_amount_colon: null,
2991 total_amount_colon: null,
2992 paying_now: null,
2993 paying_later: null,
2994 full_amount_consent: null,
2995 total_tax_colon: null,
2996 incl_tax: null,
2997 },
2998 },
2999 coupon: {
3000 name: globalLabels.coupon_segment,
3001 labels: {
3002 coupon: null,
3003 add_coupon_btn: null,
3004 coupons_used: null,
3005 },
3006 },
3007 paymentSegment: {
3008 name: globalLabels.payment_segment,
3009 labels: {
3010 payment_method: null,
3011 on_site: null,
3012 card_number_colon: null,
3013 expires_date_colon: null,
3014 payment_protected_policy: null,
3015 payment_onsite_sentence: null,
3016 payment_wc_mollie_sentence: null,
3017 },
3018 },
3019 footer: {
3020 name: globalLabels.footer_buttons,
3021 labels: {
3022 event_book_event: null,
3023 event_close: null,
3024 },
3025 },
3026 },
3027 congrats: {
3028 heading: {
3029 name: globalLabels.step_title,
3030 labels: {
3031 event_congrats: null,
3032 your_position_on_waiting_list: null,
3033 waiting_list_notify_message: null,
3034 },
3035 },
3036 content: {
3037 name: globalLabels.content,
3038 labels: {
3039 event_id: null,
3040 event_about_list: null,
3041 event_start: null,
3042 event_end: null,
3043 event_at: null,
3044 event_location: null,
3045 event_tickets: null,
3046 event_show_more: null,
3047 event_show_less: null,
3048 congrats_total_amount: null,
3049 congrats_payment: null,
3050 your_name_colon: null,
3051 email_address_colon: null,
3052 phone_number_colon: null,
3053 add_to_calendar: null,
3054 },
3055 },
3056 footer: {
3057 name: globalLabels.footer_buttons,
3058 labels: {
3059 finish_appointment: null,
3060 congrats_panel: null,
3061 },
3062 },
3063 },
3064 },
3065 capc: {
3066 sidebar: {
3067 menu: {
3068 name: globalLabels.mobile_menu,
3069 labels: {
3070 menu_title: null,
3071 },
3072 },
3073 footer: {
3074 name: globalLabels.sidebar_footer,
3075 labels: {
3076 toggle_sidebar: null,
3077 log_out: null,
3078 },
3079 },
3080 },
3081 profile: {
3082 header: {
3083 name: globalLabels.step_title,
3084 labels: {
3085 my_profile: null,
3086 },
3087 },
3088 tab: {
3089 name: globalLabels.tab_title,
3090 labels: {
3091 personal_info: null,
3092 password_tab: null,
3093 },
3094 },
3095 input: {
3096 name: globalLabels.input_fields,
3097 labels: {
3098 first_name_colon: null,
3099 enter_first_name: null,
3100 enter_first_name_warning: null,
3101 last_name_colon: null,
3102 enter_last_name: null,
3103 enter_last_name_warning: null,
3104 email_colon: null,
3105 enter_email: null,
3106 enter_valid_email_warning: null,
3107 phone_colon: null,
3108 enter_phone: null,
3109 enter_phone_warning: null,
3110 date_of_birth: null,
3111 enter_date_of_birth: null,
3112 enter_date_of_birth_warning: null,
3113 new_password_colon: null,
3114 new_password_required: null,
3115 new_password_length: null,
3116 new_password_colon_retype: null,
3117 passwords_not_match: null,
3118 },
3119 },
3120 message: {
3121 name: globalLabels.step_message,
3122 labels: {
3123 profile_data_success: null,
3124 password_success: null,
3125 },
3126 },
3127 footer: {
3128 name: globalLabels.footer_buttons,
3129 labels: {
3130 delete_profile: null,
3131 save_changes: null,
3132 change_password: null,
3133 },
3134 },
3135 },
3136 deleteProfile: {
3137 heading: {
3138 name: globalLabels.heading_title,
3139 labels: {
3140 delete_profile: null,
3141 },
3142 },
3143 content: {
3144 name: globalLabels.content,
3145 labels: {
3146 delete_profile_description: null,
3147 },
3148 },
3149 footer: {
3150 name: globalLabels.footer_buttons,
3151 labels: {
3152 close: null,
3153 delete: null,
3154 },
3155 },
3156 },
3157 appointments: {
3158 heading: {
3159 name: globalLabels.heading_title,
3160 labels: {
3161 appointments: null,
3162 },
3163 },
3164 filter: {
3165 name: globalLabels.step_filters,
3166 labels: {
3167 filters: null,
3168 services_dropdown: null,
3169 providers_dropdown: null,
3170 locations_dropdown: null,
3171 },
3172 },
3173 status: {
3174 name: globalLabels.item_status,
3175 labels: {
3176 approved: null,
3177 pending: null,
3178 canceled: null,
3179 rejected: null,
3180 },
3181 },
3182 card: {
3183 name: globalLabels.page_card,
3184 labels: {
3185 pay_now_btn: null,
3186 paid: null,
3187 reschedule: null,
3188 preview_invoice: null,
3189 download_invoice: null,
3190 cancel: null,
3191 provider_profile: null,
3192 google_meet_link: null,
3193 microsoft_teams_link: null,
3194 zoom_link: null,
3195 lesson_space_link: null,
3196 extras: null,
3197 custom_fields: null,
3198 },
3199 },
3200 messages: {
3201 name: globalLabels.page_messages,
3202 labels: {
3203 appointment_rescheduled: null,
3204 appointment_canceled: null,
3205 },
3206 },
3207 emptyState: {
3208 name: globalLabels.cust_empty_state,
3209 labels: {
3210 no_app_found: null,
3211 have_no_app: null,
3212 },
3213 },
3214 },
3215 rescheduleAppointment: {
3216 heading: {
3217 name: globalLabels.heading_title,
3218 labels: {
3219 no_selected_slot_requirements: null,
3220 },
3221 },
3222 content: {
3223 name: globalLabels.content,
3224 labels: {
3225 date_time_slots_selected: null,
3226 time_slot_unavailable: null,
3227 booking_reschedule_exception: null,
3228 },
3229 },
3230 message: {
3231 name: globalLabels.step_message,
3232 labels: {
3233 booking_cancel_exception: null,
3234 time_slot_unavailable: null,
3235 booking_reschedule_exception: null,
3236 },
3237 },
3238 footer: {
3239 name: globalLabels.footer_buttons,
3240 labels: {
3241 cancel: null,
3242 continue: null,
3243 },
3244 },
3245 },
3246 cancelAppointment: {
3247 heading: {
3248 name: globalLabels.heading_title,
3249 labels: {
3250 cancel_appointment: null,
3251 },
3252 },
3253 content: {
3254 name: globalLabels.content,
3255 labels: {
3256 confirm_cancel_appointment: null,
3257 },
3258 },
3259 footer: {
3260 name: globalLabels.footer_buttons,
3261 labels: {
3262 close: null,
3263 confirm: null,
3264 },
3265 },
3266 },
3267 events: {
3268 heading: {
3269 name: globalLabels.heading_title,
3270 labels: {
3271 events: null,
3272 },
3273 },
3274 filter: {
3275 name: globalLabels.step_filters,
3276 labels: {
3277 filters: null,
3278 events_dropdown: null,
3279 providers_dropdown: null,
3280 locations_dropdown: null,
3281 },
3282 },
3283 status: {
3284 name: globalLabels.item_status,
3285 labels: {
3286 approved: null,
3287 canceled: null,
3288 rejected: null,
3289 },
3290 },
3291 card: {
3292 name: globalLabels.page_card,
3293 labels: {
3294 pay_now_btn: null,
3295 paid: null,
3296 cancel: null,
3297 preview_invoice: null,
3298 download_invoice: null,
3299 event_organizer: null,
3300 event_staff: null,
3301 provider_profile: null,
3302 event_timetable: null,
3303 google_meet_link: null,
3304 microsoft_teams_link: null,
3305 zoom_link: null,
3306 lesson_space_link: null,
3307 custom_fields: null,
3308 event_tickets: null,
3309 event_ticket: null,
3310 e_tickets: null,
3311 },
3312 },
3313 messages: {
3314 name: globalLabels.page_messages,
3315 labels: {
3316 event_canceled: null,
3317 },
3318 },
3319 emptyState: {
3320 name: globalLabels.cust_empty_state,
3321 labels: {
3322 no_evt_found: null,
3323 have_no_evt: null,
3324 },
3325 },
3326 },
3327 cancelEvent: {
3328 heading: {
3329 name: globalLabels.heading_title,
3330 labels: {
3331 cancel_event: null,
3332 },
3333 },
3334 content: {
3335 name: globalLabels.content,
3336 labels: {
3337 confirm_cancel_event: null,
3338 },
3339 },
3340 footer: {
3341 name: globalLabels.footer_buttons,
3342 labels: {
3343 close: null,
3344 confirm: null,
3345 },
3346 },
3347 },
3348 packagesList: {
3349 heading: {
3350 name: globalLabels.heading_title,
3351 labels: {
3352 packages: null,
3353 },
3354 },
3355 filter: {
3356 name: globalLabels.step_filters,
3357 labels: {
3358 filters: null,
3359 packages_dropdown: null,
3360 services_dropdown: null,
3361 providers_dropdown: null,
3362 locations_dropdown: null,
3363 },
3364 },
3365 card: {
3366 name: globalLabels.page_card,
3367 labels: {
3368 package_book_expire: null,
3369 package_book_expiration: null,
3370 package_book_unlimited: null,
3371 preview_invoice: null,
3372 download_invoice: null,
3373 appointments_booked: null,
3374 appointment_booked: null,
3375 package_deal_expire_in: null,
3376 expires_days: null,
3377 appointments_deal_expire: null,
3378 },
3379 },
3380 emptyState: {
3381 name: globalLabels.cust_empty_state,
3382 labels: {
3383 no_pack_found: null,
3384 have_no_pack: null,
3385 },
3386 },
3387 },
3388 packageAppointmentsList: {
3389 backBtn: {
3390 name: globalLabels.back_btn_heading,
3391 labels: {
3392 back_btn: null,
3393 },
3394 },
3395 content: {
3396 name: globalLabels.content,
3397 labels: {
3398 package_book_expire: null,
3399 package_book_expiration: null,
3400 package_book_unlimited: null,
3401 appointment_booked: null,
3402 appointments_booked: null,
3403 package_cancel: null,
3404 pay_now_btn: null,
3405 paid: null,
3406 book_now: null,
3407 },
3408 },
3409 status: {
3410 name: globalLabels.item_status,
3411 labels: {
3412 approved: null,
3413 pending: null,
3414 canceled: null,
3415 rejected: null,
3416 },
3417 },
3418 card: {
3419 name: globalLabels.page_card,
3420 labels: {
3421 reschedule: null,
3422 preview_invoice: null,
3423 download_invoice: null,
3424 cancel: null,
3425 google_meet_link: null,
3426 microsoft_teams_link: null,
3427 zoom_link: null,
3428 lesson_space_link: null,
3429 extras: null,
3430 custom_fields: null,
3431 },
3432 },
3433 messages: {
3434 name: globalLabels.page_messages,
3435 labels: {
3436 booking_added_success: null,
3437 package_purchase_canceled: null,
3438 },
3439 },
3440 },
3441 bookAppointment: {
3442 heading: {
3443 name: globalLabels.heading_title,
3444 labels: {
3445 no_selected_slot_requirements: null,
3446 },
3447 },
3448 input: {
3449 name: globalLabels.input_fields,
3450 labels: {
3451 package_appointment_employee: null,
3452 package_select_employee: null,
3453 please_select_employee: null,
3454 employee_information_package: null,
3455 select_this_employee_package: null,
3456 package_appointment_location: null,
3457 package_select_location: null,
3458 please_select_location: null,
3459 },
3460 },
3461 content: {
3462 name: globalLabels.content,
3463 labels: {
3464 date_time_slots_selected: null,
3465 time_slot_unavailable: null,
3466 package_booking_unavailable: null,
3467 },
3468 },
3469 message: {
3470 name: globalLabels.step_message,
3471 labels: {
3472 customer_already_booked_app: null,
3473 time_slot_unavailable: null,
3474 package_booking_unavailable: null,
3475 },
3476 },
3477 footer: {
3478 name: globalLabels.footer_buttons,
3479 labels: {
3480 cancel: null,
3481 continue: null,
3482 },
3483 },
3484 },
3485 cancelPackage: {
3486 heading: {
3487 name: globalLabels.heading_title,
3488 labels: {
3489 cancel_package: null,
3490 },
3491 },
3492 content: {
3493 name: globalLabels.content,
3494 labels: {
3495 confirm_cancel_package: null,
3496 },
3497 },
3498 footer: {
3499 name: globalLabels.footer_buttons,
3500 labels: {
3501 close: null,
3502 confirm: null,
3503 },
3504 },
3505 },
3506 signIn: {
3507 alert: {
3508 name: globalLabels.alert_message,
3509 labels: {
3510 profile_deleted: null,
3511 },
3512 },
3513 heading: {
3514 name: globalLabels.heading_title,
3515 labels: {
3516 welcome_back: null,
3517 enter_credentials: null,
3518 },
3519 },
3520 social: {
3521 name: globalLabels.social_login,
3522 labels: {
3523 or_enter_details_below: null,
3524 },
3525 },
3526 input: {
3527 name: globalLabels.input_fields,
3528 labels: {
3529 email_or_username: null,
3530 enter_email_or_username_warning: null,
3531 password: null,
3532 enter_password_warning: null,
3533 },
3534 },
3535 footer: {
3536 name: globalLabels.footer_content,
3537 labels: {
3538 sign_in: null,
3539 forgot_your_password: null,
3540 reset_password: null,
3541 },
3542 },
3543 },
3544 accessLink: {
3545 heading: {
3546 name: globalLabels.heading_title,
3547 labels: {
3548 access_link_send: null,
3549 access_link_send_description: null,
3550 },
3551 },
3552 input: {
3553 name: globalLabels.input_fields,
3554 labels: {
3555 email: null,
3556 enter_email_warning: null,
3557 },
3558 },
3559 footer: {
3560 name: globalLabels.footer_content,
3561 labels: {
3562 send: null,
3563 sign_in: null,
3564 },
3565 },
3566 },
3567 accessLinkSuccess: {
3568 heading: {
3569 name: globalLabels.heading_title,
3570 labels: {
3571 access_link_send_check: null,
3572 access_link_send_click: null,
3573 },
3574 },
3575 footer: {
3576 name: globalLabels.footer_content,
3577 labels: {
3578 access_link_send_inbox: null,
3579 access_link_send_retry: null,
3580 },
3581 },
3582 },
3583 setPass: {
3584 heading: {
3585 name: globalLabels.heading_title,
3586 labels: {
3587 new_password_set: null,
3588 new_password_set_description: null,
3589 },
3590 },
3591 input: {
3592 name: globalLabels.input_fields,
3593 labels: {
3594 new_password_colon: null,
3595 new_password_required: null,
3596 new_password_length: null,
3597 new_password_colon_retype: null,
3598 },
3599 },
3600 footer: {
3601 name: globalLabels.footer_content,
3602 labels: {
3603 new_password_set_action: null,
3604 },
3605 },
3606 },
3607 },
3608 cape: {
3609 signIn: {
3610 alert: {
3611 name: globalLabels.alert_message,
3612 labels: {
3613 profile_deleted: null,
3614 },
3615 },
3616 heading: {
3617 name: globalLabels.heading_title,
3618 labels: {
3619 welcome_back: null,
3620 enter_credentials: null,
3621 },
3622 },
3623 social: {
3624 name: globalLabels.social_login,
3625 labels: {
3626 or_enter_details_below: null,
3627 },
3628 },
3629 input: {
3630 name: globalLabels.input_fields,
3631 labels: {
3632 email_or_username: null,
3633 enter_email_or_username_warning: null,
3634 password: null,
3635 enter_password_warning: null,
3636 },
3637 },
3638 footer: {
3639 name: globalLabels.footer_content,
3640 labels: {
3641 sign_in: null,
3642 forgot_your_password: null,
3643 reset_password: null,
3644 },
3645 },
3646 },
3647 accessLink: {
3648 heading: {
3649 name: globalLabels.heading_title,
3650 labels: {
3651 access_link_send: null,
3652 access_link_send_description: null,
3653 },
3654 },
3655 input: {
3656 name: globalLabels.input_fields,
3657 labels: {
3658 email: null,
3659 enter_email_warning: null,
3660 },
3661 },
3662 footer: {
3663 name: globalLabels.footer_content,
3664 labels: {
3665 send: null,
3666 sign_in: null,
3667 },
3668 },
3669 },
3670 accessLinkSuccess: {
3671 heading: {
3672 name: globalLabels.heading_title,
3673 labels: {
3674 access_link_send_check: null,
3675 access_link_send_click: null,
3676 },
3677 },
3678 footer: {
3679 name: globalLabels.footer_content,
3680 labels: {
3681 access_link_send_inbox: null,
3682 access_link_send_retry: null,
3683 },
3684 },
3685 },
3686 setPass: {
3687 heading: {
3688 name: globalLabels.heading_title,
3689 labels: {
3690 new_password_set: null,
3691 new_password_set_description: null,
3692 },
3693 },
3694 input: {
3695 name: globalLabels.input_fields,
3696 labels: {
3697 new_password_colon: null,
3698 new_password_required: null,
3699 new_password_length: null,
3700 new_password_colon_retype: null,
3701 },
3702 },
3703 footer: {
3704 name: globalLabels.footer_content,
3705 labels: {
3706 new_password_set_action: null,
3707 },
3708 },
3709 },
3710 },
3711 ecf: {
3712 calendar: {
3713 filters: {
3714 name: globalLabels.step_filters,
3715 labels: {
3716 event_search: null,
3717 event_filters: null,
3718 event_type: null,
3719 event_location: null,
3720 event_employee: null,
3721 event_status: null,
3722 open: null,
3723 full: null,
3724 upcoming: null,
3725 closed: null,
3726 canceled: null,
3727 },
3728 },
3729 heading: {
3730 name: globalLabels.step_heading,
3731 labels: {
3732 event_today: null,
3733 },
3734 },
3735 page: {
3736 name: globalLabels.step_content,
3737 labels: {
3738 event_slot_left: null,
3739 event_slots_left: null,
3740 event_no_spots: null,
3741 join_waiting_list: null,
3742 waiting_list: null,
3743 person_waiting: null,
3744 people_waiting: null,
3745 events: null,
3746 event_upcoming_events: null,
3747 upcoming: null,
3748 event_begins: null,
3749 event_at: null,
3750 event_free: null,
3751 from: null,
3752 total_tax_colon: null,
3753 incl_tax: null,
3754 evt_empty_message: null,
3755 },
3756 },
3757 },
3758 info: {
3759 header: {
3760 name: globalLabels.step_header,
3761 labels: {
3762 event_begins: null,
3763 event_at: null,
3764 from: null,
3765 event_free: null,
3766 event_slot_left: null,
3767 event_slots_left: null,
3768 open: null,
3769 full: null,
3770 upcoming: null,
3771 closed: null,
3772 canceled: null,
3773 total_tax_colon: null,
3774 incl_tax: null,
3775 person_waiting: null,
3776 people_waiting: null,
3777 },
3778 },
3779 tabInfo: {
3780 name: globalLabels.step_info_tab,
3781 labels: {
3782 event_info: null,
3783 event_timetable: null,
3784 description: null,
3785 show_more: null,
3786 show_less: null,
3787 event_organizer: null,
3788 about: null,
3789 },
3790 },
3791 tabTickets: {
3792 name: globalLabels.step_tickets_tab,
3793 labels: {
3794 event_tickets: null,
3795 event_tickets_left: null,
3796 event_ticket_left: null,
3797 person_waiting: null,
3798 people_waiting: null,
3799 },
3800 },
3801 footer: {
3802 name: globalLabels.footer_buttons,
3803 labels: {
3804 event_book_event: null,
3805 event_close: null,
3806 join_waiting_list: null,
3807 },
3808 },
3809 },
3810 bringingAnyone: {
3811 header: {
3812 name: globalLabels.step_title,
3813 labels: {
3814 event_bringing: null,
3815 },
3816 },
3817 footer: {
3818 name: globalLabels.footer_buttons,
3819 labels: {
3820 back_btn: null,
3821 continue: null,
3822 },
3823 },
3824 },
3825 tickets: {
3826 header: {
3827 name: globalLabels.step_title,
3828 labels: {
3829 event_select_tickets: null,
3830 },
3831 },
3832 heading: {
3833 name: globalLabels.step_heading,
3834 labels: {
3835 event_tickets: null,
3836 event_tickets_context: null,
3837 event_ticket_types: null,
3838 },
3839 },
3840 content: {
3841 name: globalLabels.step_content,
3842 labels: {
3843 event_ticket_left: null,
3844 event_tickets_left: null,
3845 person_waiting: null,
3846 people_waiting: null,
3847 },
3848 },
3849 footer: {
3850 name: globalLabels.footer_buttons,
3851 labels: {
3852 continue: null,
3853 event_close: null,
3854 join_waiting_list: null,
3855 },
3856 },
3857 },
3858 customerInfo: {
3859 header: {
3860 name: globalLabels.step_title,
3861 labels: {
3862 event_customer_info: null,
3863 },
3864 },
3865 social: {
3866 name: globalLabels.social_login,
3867 labels: {
3868 auto_fill_your_details: null,
3869 or_enter_details_below: null,
3870 },
3871 },
3872 subscribe: {
3873 name: globalLabels.mailchimp,
3874 labels: {
3875 subscribe_to_mailing_list: null,
3876 },
3877 },
3878 input: {
3879 name: globalLabels.input_fields,
3880 labels: {
3881 first_name_colon: null,
3882 enter_first_name: null,
3883 enter_first_name_warning: null,
3884 last_name_colon: null,
3885 enter_last_name: null,
3886 enter_last_name_warning: null,
3887 email_colon: null,
3888 enter_email: null,
3889 enter_valid_email_warning: null,
3890 phone_colon: null,
3891 enter_phone: null,
3892 enter_phone_warning: null,
3893 },
3894 },
3895 footer: {
3896 name: globalLabels.footer_buttons,
3897 labels: {
3898 continue: null,
3899 event_close: null,
3900 },
3901 },
3902 },
3903 payment: {
3904 header: {
3905 name: globalLabels.step_title,
3906 labels: {
3907 event_payment: null,
3908 },
3909 },
3910 summarySegment: {
3911 name: globalLabels.summary_segment,
3912 labels: {
3913 summary: null,
3914 summary_event: null,
3915 summary_person: null,
3916 summary_persons: null,
3917 subtotal: null,
3918 discount_amount_colon: null,
3919 total_amount_colon: null,
3920 paying_now: null,
3921 paying_later: null,
3922 full_amount_consent: null,
3923 total_tax_colon: null,
3924 incl_tax: null,
3925 },
3926 },
3927 coupon: {
3928 name: globalLabels.coupon_segment,
3929 labels: {
3930 coupon: null,
3931 add_coupon_btn: null,
3932 coupons_used: null,
3933 },
3934 },
3935 paymentSegment: {
3936 name: globalLabels.payment_segment,
3937 labels: {
3938 payment_method: null,
3939 on_site: null,
3940 card_number_colon: null,
3941 expires_date_colon: null,
3942 payment_protected_policy: null,
3943 payment_onsite_sentence: null,
3944 payment_wc_mollie_sentence: null,
3945 },
3946 },
3947 footer: {
3948 name: globalLabels.footer_buttons,
3949 labels: {
3950 event_book_event: null,
3951 event_close: null,
3952 },
3953 },
3954 },
3955 congrats: {
3956 heading: {
3957 name: globalLabels.step_title,
3958 labels: {
3959 event_congrats: null,
3960 your_position_on_waiting_list: null,
3961 waiting_list_notify_message: null,
3962 },
3963 },
3964 content: {
3965 name: globalLabels.content,
3966 labels: {
3967 event_id: null,
3968 event_about_list: null,
3969 event_start: null,
3970 event_end: null,
3971 event_at: null,
3972 event_location: null,
3973 event_tickets: null,
3974 event_show_more: null,
3975 event_show_less: null,
3976 congrats_total_amount: null,
3977 congrats_payment: null,
3978 your_name_colon: null,
3979 email_address_colon: null,
3980 phone_number_colon: null,
3981 add_to_calendar: null,
3982 },
3983 },
3984 footer: {
3985 name: globalLabels.footer_buttons,
3986 labels: {
3987 finish_appointment: null,
3988 congrats_panel: null,
3989 },
3990 },
3991 },
3992 },
3993 }
3994
3995 export { defaultCustomizeSettings, defaultTranslations }
3996