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