top of page

Get in Touch

We welcome your inquiries and support. Connect with us to learn more about our mission and how you can help enhance the lives of those affected by Muscular Dystrophy.

bottom of page
// backend/events.jsw import { fetch } from 'wix-fetch'; import { getSecret } from 'wix-secrets-backend'; // if you need API keys /** * Fetch upcoming events from multiple sources. * Swap out the example URLs with real API endpoints or RSS feeds. */ export async function getCommunityEvents() { const events = []; // --- Example: Eventbrite (requires API key) --- // const EB_KEY = await getSecret("eventbriteApiKey"); // let resp = await fetch("https://www.eventbriteapi.com/v3/organizations/YOUR_ORG_ID/events/", { // headers: { Authorization: `Bearer ${EB_KEY}` } // }); // let data = await resp.json(); // data.events.forEach(e => { // events.push({ // title: e.name.text, // date: e.start.local, // link: e.url // }); // }); // --- Example: A site with JSON endpoint --- try { let resp2 = await fetch("https://example.org/api/upcoming-events"); if (resp2.ok) { let list = await resp2.json(); // assume [{title, date, url}, …] list.forEach(e => { events.push({ title: e.title, date: e.date, link: e.url }); }); } } catch (err) { console.error("Error fetching from example.org", err); } // --- Example: RSS feed parsing (XML) --- try { let resp3 = await fetch("https://another.org/events/rss.xml"); if (resp3.ok) { let xml = await resp3.text(); // simple regex-based parsing – for production, use a proper XML parser const itemRegex = /[\s\S]*?<\/item>/g; let items = xml.match(itemRegex)||[]; items.forEach(item => { let titleMatch = item.match(/<!\[CDATA\[(.*?)\]\]><\/title>/); let linkMatch = item.match(/<link>(.*?)<\/link>/); let dateMatch = item.match(/<pubDate>(.*?)<\/pubDate>/); if (titleMatch && linkMatch && dateMatch) { events.push({ title: titleMatch[1], date: new Date(dateMatch[1]).toISOString(), link: linkMatch[1] }); } }); } } catch (err) { console.error("Error parsing RSS feed", err); } // Sort by date events.sort((a, b) => new Date(a.date) - new Date(b.date)); return events; } <script type="wix/htmlEmbeds" id="pageHtmlEmbeds.bodyEnd end"></script> <!--pageHtmlEmbeds.bodyEnd end--> <!-- domStoreHtml --> <svg data-dom-store style="display:none"><defs id="dom-store-defs"></defs></svg> <!-- warmup data start --> <script type="application/json" id="wix-warmup-data">{"platform":{"ssrPropsUpdates":[],"ssrStyleUpdates":[],"ssrStructureUpdates":[]},"pages":{"compIdToTypeMap":{"CONTROLLER_COMP_CUSTOM_ID":"AppController","comp-mdd9i52v1":"LoginSocialBar","comp-met05fpt":"WPhoto","comp-mcxugj5t4":"SiteButton","comp-mcxugj6b8":"WRichText","comp-me8ri557":"LinkBar","comp-mcxugj6l1":"WRichText","comp-mcxugj5z2":"HamburgerOpenButton","comp-mcxugj6c10":"WRichText","comp-mcxugj6d5":"WRichText","comp-mcxugj652":"HamburgerCloseButton","comp-mcxugj661":"ExpandableMenu","masterPage":"MasterPage","PAGES_CONTAINER":"PagesContainer","SITE_HEADER":"HeaderContainer","SITE_FOOTER":"FooterContainer","SITE_PAGES":"PageGroup","comp-mcxugj4z3":"StripColumnsContainer","comp-mdd9i526":"AppWidget","comp-mcxugj6a2":"StripColumnsContainer","comp-mcxugj5a":"Column","comp-mcxugj5s1":"Column","comp-mcxugj5t":"Column","comp-mcxugj5x9":"Column","comp-mcxugj6b4":"Column","comp-mcxugj6k15":"Column","comp-mcxugj5y3":"HamburgerMenuRoot","comp-mcxugj6c7":"Container","comp-mcxugj62":"HamburgerOverlay","comp-mcxugj63":"StripColumnsContainer","comp-mcxugj633":"Column","comp-mcxugj644":"HamburgerMenuContainer","BACKGROUND_GROUP":"BackgroundGroup","SCROLL_TO_TOP":"Anchor","SCROLL_TO_BOTTOM":"Anchor","soapAfterPagesContainer":"MeshGroup","SKIP_TO_CONTENT_BTN":"SkipToContentButton","comp-mcxugrfp7":"WRichText","comp-mcxugrfq":"WRichText","pageBackground_xthqi":"PageBackground","xthqi":"Page","comp-mcxugrfo":"ClassicSection","comp-mcxugrfo10":"StripColumnsContainer","comp-mcxugrfp3":"Column","comp-mcxugrfq14":"tpaWidgetNative","Containerxthqi":"Group","DYNAMIC_STRUCTURE_CONTAINER":"DynamicStructureContainer","site-root":"DivWithChildren","main_MF":"DivWithChildren","xthqi_wrapper":"PageMountUnmount","xthqi_wrapper_background":"PageMountUnmount"}},"appsWarmupData":{"225dd912-7dea-4738-8688-4b8c6955ffc2":{"form-viewer-comp-mcxugrfq14":{"formsById":{"ba238d4e-b0b6-483f-b08f-f6942053fcb1":{"id":"ba238d4e-b0b6-483f-b08f-f6942053fcb1","fields":[{"id":"e77a6ca0-da33-49cd-ca51-deb82e86aa2b","target":"first_name_c5e9","validation":{"string":{"format":"UNDEFINED","enum":[]},"required":true},"pii":true,"hidden":false,"view":{"label":"First name","fieldType":"CONTACTS_FIRST_NAME","hideLabel":false},"readOnly":false},{"id":"22abdf9a-cfad-471d-5c44-272fe4e06cc1","target":"last_name_a59c","validation":{"string":{"format":"UNDEFINED","enum":[]},"required":false},"pii":true,"hidden":false,"view":{"label":"Last name","fieldType":"CONTACTS_LAST_NAME","hideLabel":false},"readOnly":false},{"id":"c3d0900c-b1b9-453c-6ce4-02c3be264628","target":"email_6951","validation":{"string":{"format":"EMAIL","enum":[]},"required":true},"pii":true,"hidden":false,"view":{"label":"Email","fieldType":"CONTACTS_EMAIL","hideLabel":false},"readOnly":false},{"id":"218b848b-5898-4796-56ea-61d731065852","target":"write_a_message","validation":{"string":{"format":"UNDEFINED","enum":[]},"required":false},"pii":false,"hidden":false,"view":{"label":"Write a message","fieldType":"TEXT_AREA","hideLabel":false},"readOnly":false},{"id":"975b06af-69db-4571-2c16-c79d61c78c56","pii":false,"hidden":false,"view":{"nextText":"Next","fieldType":"SUBMIT_BUTTON","submitText":"Submit","previousText":"Back"},"readOnly":false}],"formFields":[{"id":"e77a6ca0-da33-49cd-ca51-deb82e86aa2b","hidden":false,"identifier":"CONTACTS_FIRST_NAME","fieldType":"INPUT","inputOptions":{"target":"first_name_c5e9","pii":true,"required":true,"inputType":"STRING","contactMapping":{"contactField":"FIRST_NAME"},"readOnly":false,"stringOptions":{"validation":{"format":"UNKNOWN_FORMAT","enum":[]},"componentType":"TEXT_INPUT","textInputOptions":{"label":"First name","showLabel":true,"mediaSettings":{"imagePosition":"ABOVE","imageAlignment":"CENTER","imageFit":"COVER"}}}}},{"id":"22abdf9a-cfad-471d-5c44-272fe4e06cc1","hidden":false,"identifier":"CONTACTS_LAST_NAME","fieldType":"INPUT","inputOptions":{"target":"last_name_a59c","pii":true,"required":false,"inputType":"STRING","contactMapping":{"contactField":"LAST_NAME"},"readOnly":false,"stringOptions":{"validation":{"format":"UNKNOWN_FORMAT","enum":[]},"componentType":"TEXT_INPUT","textInputOptions":{"label":"Last name","showLabel":true,"mediaSettings":{"imagePosition":"ABOVE","imageAlignment":"CENTER","imageFit":"COVER"}}}}},{"id":"c3d0900c-b1b9-453c-6ce4-02c3be264628","hidden":false,"identifier":"CONTACTS_EMAIL","fieldType":"INPUT","inputOptions":{"target":"email_6951","pii":true,"required":true,"inputType":"STRING","contactMapping":{"contactField":"EMAIL","emailInfo":{"tag":"UNTAGGED"}},"readOnly":false,"stringOptions":{"validation":{"format":"EMAIL","enum":[]},"componentType":"TEXT_INPUT","textInputOptions":{"label":"Email","showLabel":true,"mediaSettings":{"imagePosition":"ABOVE","imageAlignment":"CENTER","imageFit":"COVER"}}}}},{"id":"218b848b-5898-4796-56ea-61d731065852","hidden":false,"identifier":"TEXT_AREA","fieldType":"INPUT","inputOptions":{"target":"write_a_message","pii":false,"required":false,"inputType":"STRING","readOnly":false,"stringOptions":{"validation":{"format":"UNKNOWN_FORMAT","enum":[]},"componentType":"TEXT_INPUT","textInputOptions":{"label":"Write a message","showLabel":true,"mediaSettings":{"imagePosition":"ABOVE","imageAlignment":"CENTER","imageFit":"COVER"}}}}},{"id":"975b06af-69db-4571-2c16-c79d61c78c56","hidden":false,"identifier":"SUBMIT_BUTTON","fieldType":"DISPLAY","displayOptions":{"displayFieldType":"PAGE_NAVIGATION","pageNavigationOptions":{"nextPageText":"Next","previousPageText":"Back","submitText":"Submit"}}}],"steps":[{"id":"726d6dac-509b-4f14-06ae-7de4d09d82b3","name":"Page 1","hidden":false,"layout":{"large":{"items":[{"fieldId":"e77a6ca0-da33-49cd-ca51-deb82e86aa2b","row":0,"column":0,"width":6,"height":1},{"fieldId":"22abdf9a-cfad-471d-5c44-272fe4e06cc1","row":0,"column":6,"width":6,"height":1},{"fieldId":"c3d0900c-b1b9-453c-6ce4-02c3be264628","row":1,"column":0,"width":12,"height":1},{"fieldId":"218b848b-5898-4796-56ea-61d731065852","row":2,"column":0,"width":12,"height":1},{"fieldId":"975b06af-69db-4571-2c16-c79d61c78c56","row":3,"column":0,"width":12,"height":1}],"sections":[]}}}],"rules":[],"revision":"1","createdDate":"2025-12-09T15:41:57.501Z","updatedDate":"2025-12-09T15:41:57.501Z","properties":{"name":"Contact us","disabled":false},"deletedFields":[],"deletedFormFields":[],"kind":"REGULAR","postSubmissionTriggers":{"upsertContact":{"fieldsMapping":{"email_6951":{"contactField":"EMAIL","emailInfo":{"tag":"UNTAGGED"}},"last_name_a59c":{"contactField":"LAST_NAME"},"first_name_c5e9":{"contactField":"FIRST_NAME"}},"labels":[]}},"extendedFields":{"namespaces":{"@forms\/form-app":{"automationId":"a9323e6e-ec82-4120-a30f-6e446d61d714"}}},"namespace":"wix.form_app.form","nestedForms":[],"spamFilterProtectionLevel":"ADVANCED","submitSettings":{"submitSuccessAction":"THANK_YOU_MESSAGE","thankYouMessageOptions":{"durationInSeconds":8,"richContent":{"nodes":[{"type":"PARAGRAPH","id":"dpo8q23","nodes":[{"type":"TEXT","id":"","nodes":[],"textData":{"text":"Thanks for submitting!","decorations":[]}}],"paragraphData":{"textStyle":{"textAlignment":"CENTER"}}}],"documentStyle":{}}}},"fieldGroups":[],"enabled":true,"name":"Contact us","formRules":[]}},"translations":{"field-description.a11y.aria-label":"{linkText} description link","form.submit-button.next-step":"Next","multiline-address.a11y.group-name":"Address field","error.could-not-load-form.button.label":"Refresh","form.a11y.step.index.title":"Step {index} out of {total}","form.disabled.fallback-message":"Sorry, but the form is closed.","submit.failed.message.DISABLED_FORM_ERROR":"This form has expired and isn’t accepting submissions.","bookings-address.a11y.group-name":"Address field","error.could-not-load-form.title":"We couldn’t load this form","form.submit-button.state.in-progress":"Submitting form...","checkbox.input.error.message.required":"Check the box to continue.","submit.failed.message.SITE_MUST_ACCEPT_PAYMENTS_TO_CREATE_CHECKOUT":"We can’t accept online payments right now. Contact us to complete your transaction.","error.could-not-load-form.description":"It looks like there’s a temporary problem on our end. Wait a few minutes, refresh the screen and try again.","form.submit-button.previous-step":"Back","contacts-url-input.input.error.message.format-error":"Enter a web URL like https:\/\/www.example.com.","field-context-menu.cut":"Cut","input.error.message.incomplete-date-error.day-time":"Enter a day and time.","field.signature.a11y.action-description.type":"Use the keyboard to type.","input.error.message.required-error-forced":"This field is required.","field-context-menu.show-field":"Show field","date-picker.input.error.message.format-error":"Choose a date.","form.login-bar.actions.login":"Log in","date-picker.a11y.clear-button":"Clear","form.file-upload.uploading":"Uploading {count, plural, =0 {...} other {#%...}}","rating-input.a11y.reaction-label":"{count} {count, plural, =1 {star} other {stars}}","contacts-company.input.error.message.required-error":"Enter a company name.","dext-phone.input.error.message.required-error":"Enter a phone number.","field.signature.clear-button.label":"Clear","input.error.message.type-error":"Choose a {type}.","payment-input.input.error.message.required-error":"Enter a payment amount.","form.login-bar.action.logout":"Log out","date-picker.a11y.arrow-left":"Go to previous month","mla-subdivision.input.error.message.required-error.tr":"Choose a city.","settings.scheduling.sync-external-calendars.modal.tooltip.kb-link":"https:\/\/support.wix.com\/en\/article\/wix-meetings-syncing-personal-calendars-with-wix-meetings","input.error.message.value-range-error":"Enter a number from {minLimit} to {maxLimit}.","input.error.message.incomplete-date-error.year-month":"Enter a month and year.","mla-address-line.input.error.message.required-error":"Enter an address.","contacts-position.input.error.message.required-error":"Enter a position or job title.","bookings-phone.input.error.message.format-error":"Enter a valid phone number.","input.error.message.incomplete-date-error.year-month-time":"Enter a month, time and year.","field.number.aria-role-description":"Number","signature.input.error.message.required-error":"Sign in the box above.","field.date.label.month":"Month","field.rich-text.read-more-button.label":"Read more","field.time.label.period":"AM\/PM setting","submit.failed.message":"We could not submit your form. Try again later.","image-choice.input.error.message.required-error":"Choose an option.","dext-email.input.error.message.required-error":"Enter an email address like example@mysite.com.","mla-city.input.error.message.required-error.tr":"Enter a district.","date-picker.a11y.calendar-button.role-description":"Calendar dialog pop up collapsed","field.signature.a11y.action-description.draw-or-type":"Sign in the box or use the keyboard to type.","field.time.perdiod.AM":"AM","form.login-bar.title.logged-out-state":"Have an account? ","form.appointment.slots-not-found.text":"There’s no availability for this date. Try selecting another date.","input.error.message.format-error":"Use the format \"{format}.\"","contacts-address.input.error.message.required-error":"Enter an address.","field-context-menu.copy":"Copy to clipboard","field.signature.a11y.state.empty":"Signature field is empty.","dext-date-picker.input.error.message.min-value-error":"Enter a valid date after today’s date.","payment-input.input.error.message.min-value-error":"Enter a payment amount greater than {currency}{limit}.","input.error.message.incomplete-date-error.year-time":"Enter a 4 digit year and time.","field.signature.a11y.state.signed":"Signed.","field.quiz-answer-feedback.wrong":"Incorrect","mla-city.input.error.message.required-error":"Enter a city.","field.rich-text.read-less-button.label":"Read less","form.appointment.accessibility.calendar.previous-week.aria-label":"Show previous week","field.signature.mode.upload.description":"Upload mode selected. Upload an image of your signature.","field.quiz-file-upload.skipped":"This question was skipped. ","ecom.email.label":"Email","input.error.message.incomplete-date-error.year-month-day":"Enter a month, day and year.","field-context-menu.make-optional":"Make optional","contacts-subscribe.input.error.message.not-allowed-value":"Check the box to continue.","field.signature.mode.draw.description":"Drawing mode selected. Drawing requires a mouse or touchpad. For keyboard accessibility, select Type or Upload.","checkbox.input.error.message.required-error":"Check the box to continue.","date-picker.input.error.message.required-error":"Choose a date.","dext-tags.input.error.message.required-error":"Choose an option.","field-context-menu.delete":"Delete","field.date.label.year":"Year","mla-address-line-2.input.error.message.required-error":"Enter a second address line (e.g., apartment, suite, floor).","form.login-bar.title.logged-in-state":"Logged in as {user}","payment-input.input.error.message.max-value-error":"Enter a payment amount less than {currency}{limit}.","ecom-phone.input.error.message.required-error":"Enter a phone number.","payment-input.input.error.message.value-range-error":"Enter a payment amount between {currency}{minLimit} and {currency}{maxLimit}.","input.error.message.incomplete-date-error.year-day":"Enter a day and year.","submission-table.signature.not-signed":"Not signed","dext-url-input.input.error.message.format-error":"Enter a web URL like https:\/\/www.example.com.","ecom-phone.input.error.message.pattern-error":"Enter a valid phone number.","contacts-phone.input.error.message.not-allowed-value":"Phone numbers with this country code aren’t accepted.","vat-id.input.error.message.required-error.il":"Enter a valid 9 digit ID (“teudat zehut”) or Company number (“het pey”).","input.error.message.incomplete-date-error.day":"Enter a day.","date-input.input.error.message.min-value-error":"Enter a valid date after today’s date.","input.error.message.invalid-location-id-error":"Location is invalid","input.error.message.max-length-error":"Enter less than {limit, plural, one {# character} other {# characters}}.","field.date.placeholder.day":"Day","services-dropdown.input.error.message.required-error":"Select a Service","ecom-email.input.error.message.required-error":"Enter an email address like example@mysite.com.","dext-phone.input.error.message.not-allowed-value":"Phone numbers with this country code aren’t accepted.","dext-url-input.input.error.message.required-error":"Enter a web URL like https:\/\/www.example.com.","contacts-date-input.input.error.message.format-error":"Enter a month, day and year.","signature.input.error.message.required-error.with-upload":"Sign in the box above or upload your signature.","contacts-phone.input.error.message.required-error":"Enter a phone number.","field.phone.country-selector-button.aria-label":"Select a country code","field-context-menu.move-up":"Move up","dext-text-input.input.error.message.required-error":"Enter an answer.","settings.required-indicator-text":"(Required)","file-upload.dropzone.overlay.button":" Drop your files here","field.time.perdiod.PM":"PM","contacts-birthdate.input.error.message.format-error":"Enter a month, day and year.","field.quiz-answer-feedback.correct":"Correct","vat-id.input.error.message.required-error":"Enter a CPF\/CNPJ number.","bookings-email.input.error.message.format-error":"Enter an email address like example@mysite.com.","input.error.message.character-length-range-error":"Enter between {minLimit} and {maxLimit} characters.","bookings-phone.input.error.message.not-allowed-value":"Phone numbers with this country code aren’t accepted.","contacts-email.input.error.message.format-error":"Enter an email address like example@mysite.com.","dropdown.input.error.message.required-error":"Choose an option.","dext-text-area.input.error.message.required-error":"Enter an answer.","field.signature.settings.upload-button.label":"Upload Image","field.date.placeholder.month":"Month","form.error.prefix.a11y":"Error:","contacts-tax-id.input.error.message.required-error":"Enter a VAT ID number.","contacts-number-input.input.error.message.required-error":"Enter a number.","date-picker.a11y.aria-label":"Show date picker","field.phone.country-search-input.aria-label":"Search","field.signature.a11y.state.drawing":"Writing signature...","input.error.message.unknown-value-error":"Must have additional properties.","dext-date-picker.input.error.message.max-value-error":"Enter a valid date from January 1, 1000 to today.","form.appointment.empty-state.notification.text":"Currently, there’s no available time slots to schedule. Contact us to complete your request.","mla-country.input.error.message.required-error":"Choose a country\/region.","field.time.label.hours":"Hours","file-upload.delete-file.aria-label":"Delete file","field.vat-id.label-br":"CPF\/CNPJ","ecom-header.contact-details":"Customer details","input.error.message.invalid-staff-id-error":"This field is invalid.","date-input.input.error.message.format-error":"Enter a month, day and year.","contacts-first-name.input.error.message.required-error":"Enter a first name.","file-upload.dropzone.title":"Upload your file","field-context-menu.move-down":"Move down","contacts-url-input.input.error.message.required-error":"Enter a web URL like https:\/\/www.example.com.","field.time.label.minutes":"Minutes","dext-phone.input.error.message.format-error":"Enter a valid phone number.","bookings-phone.input.error.message.required-error":"Enter a phone number.","form.file-upload.explanation-text":"{count, plural, =1 {# file} other {# files}} uploaded","contacts-last-name.input.error.message.required-error":"Enter a last name.","field.signature.mode.selector.aria-label":"Signature input mode","field.signature.mode.draw.label":"Draw","mla-postal-code.input.error.message.pattern-error":"Enter a valid zip\/postal code.","date-picker.a11y.dropdown-year":"Select year","time-input.input.error.message.format-error":"Enter hours and minutes.","field-context-menu.hide-field":"Hide field","input.error.message.not-allowed-value":"The chosen value is not allowed.","input.error.message.min-value-error":"Enter a number that is {limit} or more.","input.error.message.incomplete-date-error.month-day":"Enter a month and day.","field.date.placeholder.time":"HH:MM","submit.checkout.message":"Redirecting to checkout...","input.error.message.invalid-phone-country-code-error":"Enter a valid country code.","mla-street-name.input.error.message.required-error":"Enter a street name.","bookings-first-name.input.error.message.required-error":"Enter a first name.","vat-id.input.error.message.format-error":"Enter a valid CPF\/CNPJ number.","form.appointment.accessibility.calendar.next-week.aria-label":"Show next week","donation.input.error.message.required-error":"Choose a donation amount.","input.error.message.incomplete-date-error.month":"Enter a month.","input.error.message.incomplete-date-error.year":"Enter a 4 digit year.","vat-id.input.error.message.format-error.il":"Enter a valid 9 digit ID (“teudat zehut”) or Company number (“het pey”).","field.phone.aria-label":"Phone","field.signature.canvas.aria-label.empty":"Signature drawing area (empty)","file-upload.dropzone.limit-reached.title":"You’ve reached the file upload limit.","form.appointment.accessibility.calendar.has-availability.aria-label":"This day has available time slots.","bookings-phone.input.error.message.pattern-error":"Enter a valid phone number.","input.error.message.incomplete-date-error.month-time":"Enter a month and time.","product-list.input.error.message.required-error":"Choose an option.","field-context-menu.move-to-next-page":"Move to next page","mla-postal-code.input.error.message.required-error":"Enter a zip\/postal code.","file-upload.input.error.message.required-error":"Upload a file.","vat-id.input.error.message.format-error.br":"Enter a valid CPF\/CNPJ number.","input.error.message.exact-character-length-error":"Enter exactly {limit, plural, one {# character} other {# characters}}.","submission-table.signature.signed":"Signed","input.error.message.incomplete-date-error":"Enter a month, day and year.","ecom-email.input.error.message.format-error":"Enter an email address like example@mysite.com.","field.vat-id.label-il":"ID\/Company number","text-input.input.error.message.required-error":"Enter an answer.","url-input.input.error.message.required-error":"Enter a web URL like https:\/\/www.example.com.","ecom-header.shipping-details":"Delivery details","service-dropdown.input.error.message.required-error":"Select a Service","field.signature.mode.type.description":"Type mode selected. Type your signature using the keyboard.","input.error.message.incomplete-date-error.year-day-time":"Enter a day, time and year.","number-input.input.error.message.required-error":"Enter a number.","field.signature.mode.upload.label":"Upload","input.error.message.unknown-error":"Unknown error, please contact Support.","input.error.message.max-items-error":"Choose up to {limit, plural, one {# option} other {# options}}.","file-upload.popover.aria-label":"List of uploaded files","input.error.message.multiple-of-value-error":"Choose a multiple of {multipleOf}.","full-name-last-name.input.error.message.required-error":"Enter a last name.","field-context-menu.paste":"Paste","input.error.message.pattern-error":"Match the pattern \"{pattern}\".","dext-number-input.input.error.message.required-error":"Enter a number.","field-context-menu.ai-assistant":"Ask AI","field-context-menu.move-to-previous-page":"Move to previous page","dext-date-picker.input.error.message.required-error":"Choose a date.","date-input.input.error.message.max-value-error":"Enter a valid date from January 1, 1000 to today.","dext-checkbox-group.input.error.message.required-error":"Choose an option.","file-upload.dropzone.subtitle":"Choose a file or drag and drop one here.","dext-radio-group.input.error.message.required-error":"Choose an option.","checkbox.input.error.message.not-allowed-value":"Check the box to continue.","contacts-birthdate.input.error.message.max-value-error":"Enter a date from January 1, 1900 to today.","input.error.message.incomplete-date-error.month-day-time":"Enter a month, day and time.","file-upload.aria-roledescription":"File upload","contacts-phone.input.error.message.pattern-error":"Enter a valid phone number.","mla-street-number.input.error.message.required-error":"Enter a house number.","date-picker.a11y.dropdown-month":"Select month","field.signature.mode.type.label":"Type","settings.default-value-conflict.min-value-error":"Min characters must be at least the default text length. Update the character limit or shorten the text.","date-picker.input.error.message.min-value-error":"Enter a valid date after today’s date.","date-time-input.input.error.message.min-value-error":"Enter a valid date after today’s date.","dext-checkbox.input.error.message.required-error":"Check the box to continue.","url-input.input.error.message.format-error":"Enter a web URL like https:\/\/www.example.com.","file-upload.file.uploading-spinner.aria-label":"Loading file","field.phone.country-code.aria-label":"Country code","add-other.default-other-option-label":"Other","dext-checkbox.input.error.message.not-allowed-value":"Check the box to continue.","field.date.placeholder.year":"Year","date-picker.input.error.message.max-value-error":"Enter a valid date from January 1, 1000 to today.","field.signature.text.placeholder":"Type your signature","dext-date-picker.input.error.message.format-error":"Choose a date.","form.file-upload.error.upload-limit":"There is an upload limit of {limit, plural, one {# file} other {# files}}.","checkbox-group.input.error.message.required-error":"Choose an option.","rating-input.input.error.message.required-error":"Choose a star rating.","field.mla-apartment.label":"Apartment","text-area.input.error.message.required-error":"Enter an answer.","field.phone.country-search-input.placeholder":"Search","submission-table.appointment.meeting-tool-tip":"Go to Scheduled Meetings","donation.other-option.placeholder":"Enter an amount","dext-rating-input.input.error.message.required-error":"Choose a star rating.","field.signature.a11y.action-description.draw":"Sign in the box.","contacts-birthdate.input.error.message.min-value-error":"Enter a date from January 1, 1900 to today.","mla-subdivision.input.error.message.required-error":"Choose an option.","dext-dropdown.input.error.message.required-error":"Choose an option.","contacts-text-input.input.error.message.required-error":"Enter an answer.","field.date.label.day":"Day","vat-id.input.error.message.required-error.br":"Enter a CPF\/CNPJ number.","date-picker.calendar.close-button":"Close","input.error.message.invalid-value-for-pattern":"Enter a valid answer.","radio-group.input.error.message.required-error":"Choose an option.","input.error.message.min-items-error":"Choose at least {limit, plural, one {# option} other {# options}}.","ecom.form.field-type.ecom-subscriptions.label":"I agree to receive news to the email address and\/or phone numbers added","input.error.message.decimal_point_error":"Add {number} number(s) after the decimal point.","bookings-email.input.error.message.required-error":"Enter an email address like example@mysite.com.","contacts-subscribe.input.error.message.required-error":"Check the box to continue.","form.appointment.show-more-slots.text":"Show more slots","form.file-upload.error.upload-failed":"File upload failed.","dext-email.input.error.message.format-error":"Enter an email address like example@mysite.com.","full-name-first-name.input.error.message.required-error":"Enter a first name.","field-context-menu.settings":"Settings","settings.default-value-conflict.max-value-error":"Max characters must be at least the default text length. Update the character limit or shorten the text.","bookings-last-name.input.error.message.required-error":"Enter a last name.","appointment.input.error.message.required-error":"This field is required.","field-context-menu.make-required":"Make required","date-time-input.input.error.message.format-error":"Enter a month, day and year.","field.date.label.time":"Time","input.error.message.required-error":"This field is required.","field.phone.country-selector-dropdown.no-result":"No results found...","input.error.message.exact-items-number-error":"Choose {limit, plural, one {# option} other {# options}}.","form.appointment.timezone.label":"Time zone","dext-date-time-input.input.error.message.required-error":"Enter a month, day and year.","date-time-input.input.error.message.max-value-error":"Enter a valid date from January 1, 1000 to today.","date-picker.a11y.arrow-right":"Go to next month","input.error.message.incomplete-date-error.time":"Enter a time.","field.signature.canvas.aria-label.signed":"Signature drawing area (signed)","settings.default-value-conflict.regex-error":"The regex must be viable for the entered default value. Update the regex or change the text.","contacts-phone.input.error.message.format-error":"Enter a valid phone number.","tags.input.error.message.required-error":"Choose an option.","file-upload.dropzone.limit-reached.subtitle":"Delete a file to add a different one.","input.error.message.max-value-error":"Enter a number that is {limit} or less.","input.error.message.min-length-error":"Enter at least {limit, plural, one {# character} other {# characters}}.","form.appointment.meeting-format.in-person-location-method-os-location":"Business location","form.file-upload.error.limit":"You've reached your upload limit of {limit, number} files.","contacts-email.input.error.message.required-error":"Enter an email address like example@mysite.com.","field-context-menu.duplicate":"Duplicate"},"localeDataset":{},"fieldInitialData":{}}}},"ooi":{"failedInSsr":{}}}</script> <!-- warmup data end --> <!-- presets polyfill --> <!-- detect browser zoom --> </body> </html>