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